ES-DE/src/Renderer_init.cpp

29 lines
402 B
C++
Raw Normal View History

2012-09-10 18:48:00 +00:00
#include "platform.h"
#ifdef _RPI_
#include "Renderer_init_rpi.cpp"
#endif
#ifdef _DESKTOP_
#include "Renderer_init_sdlgl.cpp"
#endif
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();
}
}
};