3dphotoshoot

view src/text.h @ 26:a460b1e5af4a

added GLUT frontend
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 18 Jun 2015 03:55:05 +0300
parents
children
line source
1 #ifndef TEXT_H_
2 #define TEXT_H_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 void text_color(float r, float g, float b, float a);
9 void text_position(int x, int y);
10 void text_print(const char *s);
11 void text_printf(const char *fmt, ...);
13 #ifdef __cplusplus
14 }
15 #endif
17 #endif /* TEXT_H_ */