1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Add getTextSize to TextDrawerStub

This commit is contained in:
Logan McNaughton 2016-10-08 08:19:53 -06:00 committed by Sergey Lipskiy
parent b3fa7a314c
commit b03e547b8c

View File

@ -4,6 +4,7 @@ TextDrawer::TextDrawer() {}
void TextDrawer::init() {}
void TextDrawer::destroy() {}
void TextDrawer::renderText(const char * /*_pText*/, float /*x*/, float /*y*/) const {}
void TextDrawer::getTextSize(const char *_pText, float & _w, float & _h) const {}
TextDrawer & TextDrawer::get() {
static TextDrawer drawer;
return drawer;