-
Notifications
You must be signed in to change notification settings - Fork 12
Pixel Graphics Functions
The Pixel Graphics functions allow the HuC programmer to plot pixels
directly to the screen. However, bear in mind that these functions
are slow and are not suited for applications where high performance
is required.
void gfx_setbgpal(char bgcolor); [ 3.04+ ] |
---|
|
void gfx_init(int vaddr); [ 3.04+ ] |
---|
|
void gfx_clear(int vaddr); [ 3.04+ ] |
---|
|
void gfx_plot(int x, int y, int color); [ 3.04+ ] |
---|
|
char gfx_point(int x, int y); [ 3.04+ ] |
---|
Return the color of the pixel at (x,y). |
void gfx_line(int x1, int y1, int x2, int y2, int color); [ 3.11+ ] |
---|
|