1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-06-25 22:09:35 +00:00
GLideN64/src/TextDrawerStub.cpp
2018-03-31 10:54:20 +07:00

31 lines
427 B
C++

/* Stub for TextDrawer.h
* Use to replace remove freetype library requirement.
*/
#include "TextDrawer.h"
TextDrawer g_textDrawer;
struct Atlas {
};
void TextDrawer::init()
{
}
void TextDrawer::destroy()
{
}
void TextDrawer::drawText(const char *_pText, float _x, float _y) const
{
}
void TextDrawer::getTextSize(const char *_pText, float & _w, float & _h) const
{
}
void TextDrawer::setTextColor(float * _color)
{
}