Thank You for your continued support and contributions!
_clr.inc _clr.setConstants: IS_COLOR_TARGET _draw.circle _draw.circle_filled _draw.ellipse _draw.ellipse_filled _draw.ellipse_rect_filled _draw.ellipse_rect _draw.flood_fill _draw.hline _draw.image _draw.line _draw.polygon _draw.polyline _draw.rect _draw.rect_filled _draw.rounded_rect _draw.rounded_rect_filled _draw.text _draw.vline _img.save _img.search _img.rotate _img.resize _img.tile _img.new _img.loadConstants: _img.RLI_INFO_ALL _img.RLI_INFO_TYPE _img.RLI_INFO_WIDTH _img.RLI_INFO_HEIGHT _img.RLI_INFO_ELEMS _img.RLI_INFO_BYTES _img.RLI_INFO_DEPTH _img.RLI_INFO_FORMAT _img.RLI_INFO_ADDRESS _lcd.clear _lcd.duplicate _lcd.image _lcd.set_viewport _lcd.splashf _lcd.text_extent _lcd.update _lcd.update_rectConstants: _lcd.CX _lcd.CY _lcd.DEPTH _lcd.W _lcd.H _lcd _LCD _math.clamp _math.clamp_roll _math.d_sin _math.d_cos _math.d_tan _math.i_sqrt _print.clear _print.f _print.opt _print.opt.area _print.opt.autoupdate _print.opt.color _print.opt.column _print.opt.defaults _print.opt.get _print.opt.justify _print.opt.line _print.opt.overflow _print.opt.sel_line _print.opt.set _timer.active _timer.check _timer.split _timer.start _timer.stop
_blit.CUSTOM = 0xFF --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 _blit.BNOR = 0x3 --(NOT) (source OR dest pixels) _blit.BSNOR = 0x4 --(NOT source) OR dest pixels _blit.BAND = 0x5 --AND source and dest pixels _blit.BNAND = 0x6 --(NOT) AND source and dest pixels _blit.BNOT = 0x7 --NOT source and dest pixels --blit functions for masks _blit.BSAND = 0x8 --copy color to dest if source pixel <> 0 _blit.BSNOT = 0x9 --copy color to dest if source pixel == 0 --blit functions for masks with colors _blit.BSORC = 0xA --copy source pixel or color _blit.BSXORC = 0xB --copy source pixel xor color _blit.BNSORC = 0xC --copy ~(src_val | clr) _blit.BSORNC = 0xD --copy src_val | (~clr) _blit.BSANDC = 0xE --copy src_val & clr; _blit.BNSANDC = 0xF --copy (~src_val) & clr _blit.BDORNSORC = 0x10 --copy dst | (~src_val) | clr _blit.BXORSADXORC = 0x11 --copy dst ^ (src_val & (dst_val ^ clr)) _blit.BSNEC = 0x12 --copy source pixel if source <> color _blit.BSEQC = 0x13 --copy source pixel if source == color _blit.BSGTC = 0x14 --copy source pixel if source > color _blit.BSLTC = 0x15 --copy source pixel if source < color _blit.BDNEC = 0x16 --copy source pixel if dest <> color _blit.BDEQC = 0x17 --copy source pixel if dest == color _blit.BDGTC = 0x18 --copy source pixel if dest > color _blit.BDLTC = 0x19 --copy source pixel if dest < color _blit.BDNES = 0x1A --copy color to dest if dest <> source pixel _blit.BDEQS = 0x1B --copy color to dest if dest == source pixel _blit.BDGTS = 0x1C --copy color to dest if dest > source pixel _blit.BDLTS = 0x1D --copy color to dest if dest < source pixel --Source unused for these blits _blit.BCOPYC = 0x1E --copy color _blit.BORC = 0x1F --OR dest and color _blit.BXORC = 0x20 --XOR dest and color _blit.BNDORC = 0x21 --~(dst_val | clr) _blit.BDORNC = 0x22 --dst_val | (~clr) _blit.BANDC = 0x23 --AND dest and color _blit.BNDANDC = 0x24 --copy (~dst_val) & clr _blit.BDLTS = 0x25 --dest NOT color
Page created in 0.106 seconds with 21 queries.