Add the gears from glxgears.

This commit is contained in:
Kristian Høgsberg 2008-11-03 15:31:30 -05:00
parent 33a52bd07d
commit 8a9cda8cfb
4 changed files with 298 additions and 9 deletions

10
gears.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef _GEARS_H_
#define _GEARS_H_
struct gears;
struct gears *gears_create(void);
void gears_draw(struct gears *gears, GLfloat angle);
#endif