ES-DE/src/Renderer_init.cpp

24 lines
344 B
C++
Raw Normal View History

#include "Renderer.h"
2012-09-10 18:48:00 +00:00
#include "platform.h"
#include GLHEADER
#include "Font.h"
namespace Renderer
{
void onInit()
{
for(int i = 0; i < (int)FONT_SIZE_COUNT; i++)
{
getDefaultFont((FontSize)i)->init();
}
}
void onDeinit()
{
for(int i = 0; i < (int)FONT_SIZE_COUNT; i++)
{
getDefaultFont((FontSize)i)->deinit();
}
}
};