diff options
author | William Wilgus <me.theuser@yahoo.com> | 2018-09-23 18:25:31 +0200 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2018-10-09 01:02:25 +0200 |
commit | c0682e094414d0748456d0b01000727039ff701c (patch) | |
tree | 2cc08bfdfe967bbe18fade1ed835d54a3f91cd23 /apps/plugins/lua/include_lua/blit.lua | |
parent | e4b843335bc34810c11ed405d473e6f7c94a153f (diff) | |
download | rockbox-c0682e094414d0748456d0b01000727039ff701c.tar.gz rockbox-c0682e094414d0748456d0b01000727039ff701c.zip |
Clean up rocklib_img
optimize both size and speed
fix invert for color screens
Change-Id: I7edecae32dcb3daf5b3ed984a0e5b3d463269e60
Diffstat (limited to 'apps/plugins/lua/include_lua/blit.lua')
-rw-r--r-- | apps/plugins/lua/include_lua/blit.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/include_lua/blit.lua b/apps/plugins/lua/include_lua/blit.lua index 6c5ea377e4..3505ae4943 100644 --- a/apps/plugins/lua/include_lua/blit.lua +++ b/apps/plugins/lua/include_lua/blit.lua @@ -36,7 +36,7 @@ if not rb.lcd_framebuffer then rb.splash(rb.HZ, "No Support!") return nil end local _blit ={} do - _blit.CUSTOM = 0xFF --user defined blit function func(dst_val, x, y, src_val, x, y) + _blit.CUSTOM = nil --user defined blit function func(dst_val, x, y, src_val, x, y) _blit.BCOPY = 0x0 --copy (use :copy() instead it is slightly faster _blit.BOR = 0x1 --OR source and dest pixels _blit.BXOR = 0x2 --XOR source and dest pixels |