wayland/gears.h

11 lines
199 B
C
Raw Normal View History

2008-11-03 15:31:30 -05:00
#ifndef _GEARS_H_
#define _GEARS_H_
struct gears;
struct gears *gears_create(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
2008-11-03 15:31:30 -05:00
void gears_draw(struct gears *gears, GLfloat angle);
#endif