diff options
author | vanfanel | 2015-12-08 18:44:15 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-08 21:41:40 +0100 |
commit | ae1be06db831e9480a060ef513aad6819be5cdd0 (patch) | |
tree | ca9423e1716393ccfd237d6ecab99ea27b24a987 | |
parent | 6deb5ecc881145b7d7718de5da2c64c6eb80c199 (diff) | |
download | scummvm-rg350-ae1be06db831e9480a060ef513aad6819be5cdd0.tar.gz scummvm-rg350-ae1be06db831e9480a060ef513aad6819be5cdd0.tar.bz2 scummvm-rg350-ae1be06db831e9480a060ef513aad6819be5cdd0.zip |
RASPBERRYPI: Disable OpenGL ES because it offers no advantage over SDL2.
-rwxr-xr-x | configure | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -2584,15 +2584,12 @@ if test -n "$_host"; then _eventrec=no _build_scalers=no _build_hq_scalers=no - # This is so OpenGL detection works for OpenGL ES, only if OpenGL has been - # explicitly activated. - if test "$_opengl" = yes; then - _opengles=yes - fi # We prefer SDL2 on the Raspberry Pi: acceleration now depends on it # 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. ;; dreamcast) append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER" |