summaryrefslogtreecommitdiffstats
path: root/menu_demo/font.h
blob: 817c8a46fbf1390c8c014296b1e450237ae2a2cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _CFONT_H
#define _CFONT_H

#define FONT_WIDTH   32
#define FONT_HEIGHT  32
#define FONT_SPACING 20

void FontInit(int f_iWinWidth, int f_iWinHeight);
void FontDelete(GLvoid);
void glPrint(GLint x, GLint y, char *string);

#endif