2 Copyright (c)2006-2007 - Brett Lajzer
4 See LICENSE for license information.
13 #include "SDL/SDL_ttf.h"
15 //loads a font and returns a pointer to it
16 int l_load_font(lua_State
*L
);
19 int l_close_font(lua_State
*L
);
21 //gets dimensions of a string as rendered with a font
22 int l_font_string_metrics(lua_State
*L
);
24 //render a string in a font
25 int l_render_string(lua_State
*L
);