mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-04 13:29:51 -05:00
11 lines
148 B
C
11 lines
148 B
C
|
|
#ifndef _GEARS_H_
|
||
|
|
#define _GEARS_H_
|
||
|
|
|
||
|
|
struct gears;
|
||
|
|
|
||
|
|
struct gears *gears_create(void);
|
||
|
|
|
||
|
|
void gears_draw(struct gears *gears, GLfloat angle);
|
||
|
|
|
||
|
|
#endif
|