glamtk

annotate 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
rev   line source
nuclear@7 1 #ifndef DRAW_H_
nuclear@7 2 #define DRAW_H_
nuclear@7 3
nuclear@7 4 void imtk_draw_color(float r, float g, float b, float a);
nuclear@7 5 void imtk_draw_colorv(float *v);
nuclear@7 6 void imtk_draw_background(float r, float g, float b, float a);
nuclear@7 7 void imtk_draw_backgroundv(float *v);
nuclear@7 8
nuclear@7 9 void imtk_draw_rect(int x, int y, int w, int h, int rad);
nuclear@7 10
nuclear@7 11 #endif /* DRAW_H_ */