Search found 3 matches
- Wed May 02, 2018 7:17 pm
- Forum: Libraries and Tools
- Topic: FBlove - fast software rendering
- Replies: 4
- Views: 5119
Re: FBlove - fast software rendering
Fixed for love11.1
- Sun Mar 18, 2018 8:53 pm
- Forum: Libraries and Tools
- Topic: FBlove - fast software rendering
- Replies: 4
- Views: 5119
Re: FBlove - fast software rendering
It uses not so match CPU for drawing: on reasonable resolutions, performance limited by image:refresh() (~40% cpu)
Text renderer with BDF fonts and unicode support
screen from Samsung Galaxy Y GT-S5360. 832mhz arm6
Text renderer with BDF fonts and unicode support
screen from Samsung Galaxy Y GT-S5360. 832mhz arm6

- Sun Mar 18, 2018 7:41 am
- Forum: Libraries and Tools
- Topic: FBlove - fast software rendering
- Replies: 4
- Views: 5119
FBlove - fast software rendering
I always liked simplicity of framebuffer , so i created small library for drawing directly on imagedata. fb=require 'fblove_strip'(w,h) function love.draw() fb.fill(0xFFaa00aa) for y=0,h-1 do for x=0,w-1do fb.buf[y][x]=0xFFFF0000+x*y end end fb.refresh() fb.draw(0,0,1) end fblove.love Because of ffi...