00001
00002
00003
00004
00005
00006
00007
00008 #ifndef TRUE
00009 #define TRUE 1
00010 #endif
00011
00012 #ifndef FALSE
00013 #define FALSE 0
00014 #endif
00015
00016
00017 #include "glwrap.H"
00018
00019
00020
00021
00022
00023
00024 typedef struct
00025 {
00026 float dx, dy;
00027 float tx1, ty1;
00028 float tx2, ty2;
00029 } GLFONTCHAR;
00030
00031
00032 struct GLFONT
00033 {
00034
00035 GLuint Tex;
00036 int TexWidth, TexHeight;
00037 int IntStart, IntEnd;
00038 GLFONTCHAR *Char;
00039 };
00040
00041
00042
00043
00044
00045
00046 int glFontCreate (GLFONT *Font, char *FileName);
00047
00048
00049 void glFontDestroy (GLFONT *Font);
00050
00051
00052 void glFontBegin (GLFONT *Font);
00053
00054
00055 void glFontEnd (void);
00056
00057
00058 void glFontTextOut (char *String, float x, float y,
00059 float z,GLFONT *Font);
00060
00061
00062 float glFontBox(char* String, float x,float y, float z, GLFONT *Font);
00063
00064
00065
00066
00067