Fonts now handle resolution changes properly

This commit is contained in:
Bill Meltsner
2010-08-24 14:12:12 -05:00
parent 5a3b9691e5
commit 2cc3fb4715
2 changed files with 24 additions and 1 deletions
+5 -1
View File
@@ -35,7 +35,7 @@ namespace graphics
{
namespace opengl
{
class Font : public Object
class Font : public Object, public Volatile
{
private:
@@ -148,6 +148,10 @@ namespace opengl
* Returns the spacing modifier.
**/
float getSpacing() const;
// Implements Volatile.
bool loadVolatile();
void unloadVolatile();
}; // Font