3dphotoshoot

diff src/text.h @ 22:d7fe157c402d

fonts
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 13 Jun 2015 05:32:07 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/text.h	Sat Jun 13 05:32:07 2015 +0300
     1.3 @@ -0,0 +1,17 @@
     1.4 +#ifndef TEXT_H_
     1.5 +#define TEXT_H_
     1.6 +
     1.7 +#ifdef __cplusplus
     1.8 +extern "C" {
     1.9 +#endif
    1.10 +
    1.11 +void text_color(float r, float g, float b, float a);
    1.12 +void text_position(int x, int y);
    1.13 +void text_print(const char *s);
    1.14 +void text_printf(const char *fmt, ...);
    1.15 +
    1.16 +#ifdef __cplusplus
    1.17 +}
    1.18 +#endif
    1.19 +
    1.20 +#endif	/* TEXT_H_ */