diff options
author | vanfanel | 2015-12-25 04:24:20 +0100 |
---|---|---|
committer | vanfanel | 2015-12-25 04:24:20 +0100 |
commit | c385a34e8ac37e6f6d35d02a0b4401953d2d69d1 (patch) | |
tree | 4c03e62725de4339480c454cfb95e06affee8a96 /configure | |
parent | 374056015382987479ef543b4edf2aad3adfc1d2 (diff) | |
download | scummvm-rg350-c385a34e8ac37e6f6d35d02a0b4401953d2d69d1.tar.gz scummvm-rg350-c385a34e8ac37e6f6d35d02a0b4401953d2d69d1.tar.bz2 scummvm-rg350-c385a34e8ac37e6f6d35d02a0b4401953d2d69d1.zip |
SDL/GL Enabled OpenGL(ES) on the Raspberry Pi in the configure script.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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" |