blob: 243dfb0887d8eab65d488d28c43a579c9fd3313c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* render-text.h
*
* Simple text rendering
*
* (c) 2008 Thomas White <taw27@cam.ac.uk>
*
* thrust3d - a silly game
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef RENDERTEXT_H
#define RENDERTEXT_H
#include "types.h"
#include <glew.h>
extern void render_text_setup(RenderContext *r);
extern void render_text_write(GLfloat x, GLfloat y, const char *text, RenderContext *r);
#endif /* RENDERTEXT_H */
|