Sprite Masking
- Posted by Guy <euphoria_programmer at yahoo.com> May 27, 2004
- 559 views
Does anyone know how sprites using masks work? Also how can I use Euphoria to draw them? I am looking for alternatives to the simple:
if pixel_color = clear_color then --Don't draw it else --Draw it end if
This is slow because it requires that you cycle through and examine each pixel in the image.

