mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-31 22:25:25 -04:00
10 lines
199 B
C
10 lines
199 B
C
#ifndef _GEARS_H_
|
|
#define _GEARS_H_
|
|
|
|
struct gears;
|
|
|
|
struct gears *gears_create(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
|
|
|
|
void gears_draw(struct gears *gears, GLfloat angle);
|
|
|
|
#endif
|