summaryrefslogtreecommitdiff
path: root/src/cguittfont
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2016-12-24 14:26:03 +0100
committersfan5 <sfan5@live.de>2016-12-26 22:36:22 +0100
commit084cdea6862cb65fe4bb807a211a9e1c17cffec8 (patch)
tree64c0bd1d43a34b8b7c026ececf31f681fb0d68c4 /src/cguittfont
parentb16252dcae8c6b0e79c20fa4c3cbddc37ad377cb (diff)
downloadminetest-084cdea6862cb65fe4bb807a211a9e1c17cffec8.tar.gz
minetest-084cdea6862cb65fe4bb807a211a9e1c17cffec8.tar.bz2
minetest-084cdea6862cb65fe4bb807a211a9e1c17cffec8.zip
Irrlicht 1.9 support
Diffstat (limited to 'src/cguittfont')
-rw-r--r--src/cguittfont/CGUITTFont.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cguittfont/CGUITTFont.h b/src/cguittfont/CGUITTFont.h
index 0aa540c5c..77c9e34f8 100644
--- a/src/cguittfont/CGUITTFont.h
+++ b/src/cguittfont/CGUITTFont.h
@@ -125,6 +125,10 @@ namespace gui
bool flgmip = driver->getTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS);
driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, false);
+#if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
+ bool flgcpy = driver->getTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY);
+ driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, true);
+#endif
// Set the texture color format.
switch (pixel_mode)
@@ -140,6 +144,9 @@ namespace gui
// Restore our texture creation flags.
driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, flgmip);
+#if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
+ driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, flgcpy);
+#endif
return texture ? true : false;
}