aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2015-12-27 14:57:46 +0100
committerJohannes Schickel2015-12-27 14:57:46 +0100
commit08cff7942fda3f3703a2320fe3053526dcabd38e (patch)
tree35e149e7ded18e2163e1830bdbf24406cac3ee32
parenta49ffcd87b23f455cf777f45f734670694a69592 (diff)
parentc385a34e8ac37e6f6d35d02a0b4401953d2d69d1 (diff)
downloadscummvm-rg350-08cff7942fda3f3703a2320fe3053526dcabd38e.tar.gz
scummvm-rg350-08cff7942fda3f3703a2320fe3053526dcabd38e.tar.bz2
scummvm-rg350-08cff7942fda3f3703a2320fe3053526dcabd38e.zip
Merge pull request #641 from vanfanel/gles_fix
SDL/GL Enabled OpenGL(ES) on the Raspberry Pi in the configure script.
-rwxr-xr-xconfigure6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure b/configure
index 34ffa2fb6a..abc38fe4e3 100755
--- a/configure
+++ b/configure
@@ -2610,8 +2610,10 @@ if test -n "$_host"; then
# since SDL2 manages dispmanx/GLES2 very well internally.
# SDL1 is bit-rotten on this platform.
_sdlconfig=sdl2-config
- # We should add _opengles=yes later here if we wanted the GLES renderer.
- # For now, we use plain SDL2 only, which in turn uses GLES2 by default.
+ # OpenGL(ES) support is mature enough as to be the best option on
+ # the Raspberry Pi, so it's enabled by default.
+ _opengl=yes
+ _opengles=yes
;;
dreamcast)
append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER"