glamtk

view src/draw.h @ 10:5b86b98ee988

fixed missing -lGLU from makefile
author John Tsiombikas <nuclear@siggraph.org>
date Sat, 16 Apr 2011 22:59:06 +0300
parents
children
line source
1 #ifndef DRAW_H_
2 #define DRAW_H_
4 void imtk_draw_color(float r, float g, float b, float a);
5 void imtk_draw_colorv(float *v);
6 void imtk_draw_background(float r, float g, float b, float a);
7 void imtk_draw_backgroundv(float *v);
9 void imtk_draw_rect(int x, int y, int w, int h, int rad);
11 #endif /* DRAW_H_ */