/* * font.h * * Created on: 16 sept. 2011 * Author: laurent */ #ifndef FONT_H_ #define FONT_H_ void fontInit(); //use it at start of program void fontFree(); //use it at end of program void fontUse(); //use it before font function void fontUnUse(); //use it after font function void fontGLPrint(float x, float y, const char *fmt, ... ); void fontDrawString(float x, float y, const char *str, char sel); #endif