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

Replace TextDrawer by TextDrawerStub for GL ES.

This commit is contained in:
Sergey Lipskiy 2015-04-23 17:11:21 +06:00
parent 2bf72ab833
commit 759578ff14
2 changed files with 12 additions and 1 deletions

View File

@ -58,7 +58,7 @@ LOCAL_SRC_FILES := \
$(SRCDIR)/mupenplus/Config_mupenplus.cpp \
$(SRCDIR)/mupenplus/MupenPlusAPIImpl.cpp \
$(SRCDIR)/mupenplus/OpenGL_mupenplus.cpp \
# $(SRCDIR)/TextDrawer.cpp \
$(SRCDIR)/TextDrawerStub.cpp \
LOCAL_CFLAGS := \
$(COMMON_CFLAGS) \

11
src/TextDrawerStub.cpp Normal file
View File

@ -0,0 +1,11 @@
#include "TextDrawer.h"
TextDrawer::TextDrawer() {}
void TextDrawer::init() {}
void TextDrawer::destroy() {}
void TextDrawer::renderText(const char * /*_pText*/, float /*x*/, float /*y*/) const {}
TextDrawer & TextDrawer::get() {
static TextDrawer drawer;
return drawer;
}