mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-09 13:29:48 -05:00
10 lines
148 B
C
10 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
|