Added canvas_fill(rgba) and a 50% black fill bound to the 'c' key.

This commit is contained in:
Marcel Hellkamp 2018-03-29 18:39:37 +02:00
parent 0090f518e9
commit c651046e3f
3 changed files with 11 additions and 0 deletions

View file

@ -15,6 +15,7 @@ void canvas_close();
void canvas_fullscreen(int display);
int canvas_get_display();
void canvas_fill(uint32_t rgba);
void canvas_set_px(unsigned int x, unsigned int y, uint32_t rgba);
void canvas_get_px(unsigned int x, unsigned int y, uint32_t *rgba);