glamtk
diff src/draw.h @ 7:a115dff39a54
rounded crappy buttons
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 11 Mar 2011 02:25:49 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/draw.h Fri Mar 11 02:25:49 2011 +0200 1.3 @@ -0,0 +1,11 @@ 1.4 +#ifndef DRAW_H_ 1.5 +#define DRAW_H_ 1.6 + 1.7 +void imtk_draw_color(float r, float g, float b, float a); 1.8 +void imtk_draw_colorv(float *v); 1.9 +void imtk_draw_background(float r, float g, float b, float a); 1.10 +void imtk_draw_backgroundv(float *v); 1.11 + 1.12 +void imtk_draw_rect(int x, int y, int w, int h, int rad); 1.13 + 1.14 +#endif /* DRAW_H_ */