/* * render-text.h * * Simple text rendering * * (c) 2008 Thomas White * * thrust3d - a silly game * */ #ifdef HAVE_CONFIG_H #include #endif #ifndef RENDERTEXT_H #define RENDERTEXT_H #include "types.h" #include extern void render_text_setup(RenderContext *r); extern void render_text_write(GLfloat x, GLfloat y, const char *text, RenderContext *r); #endif /* RENDERTEXT_H */