summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorproller <proller@github.com>2013-03-02 20:44:08 +0400
committerkwolekr <kwolekr@minetest.net>2013-03-16 22:37:50 -0400
commit10c03e1a9d09ba0369ea3fbff1ec3a9436a3b706 (patch)
tree78fb5ea11a7ed169290f90b7f5bc9ec9647e52ff /src/main.cpp
parent67228160aed84e0ef07a863ac0127931f8d58b05 (diff)
downloadminetest-10c03e1a9d09ba0369ea3fbff1ec3a9436a3b706.tar.gz
minetest-10c03e1a9d09ba0369ea3fbff1ec3a9436a3b706.tar.bz2
minetest-10c03e1a9d09ba0369ea3fbff1ec3a9436a3b706.zip
build with ogles2 driver
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 73be969ad..e5aa3017d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1350,6 +1350,14 @@ int main(int argc, char *argv[])
driverType = video::EDT_DIRECT3D9;
else if(driverstring == "opengl")
driverType = video::EDT_OPENGL;
+#ifdef _IRR_COMPILE_WITH_OGLES1_
+ else if(driverstring == "ogles1")
+ driverType = video::EDT_OGLES1;
+#endif
+#ifdef _IRR_COMPILE_WITH_OGLES2_
+ else if(driverstring == "ogles2")
+ driverType = video::EDT_OGLES2;
+#endif
else
{
errorstream<<"WARNING: Invalid video_driver specified; defaulting "