SDL/GL Enabled OpenGL(ES) on the Raspberry Pi in the configure script.

This commit is contained in:
vanfanel 2015-12-25 04:24:20 +01:00
parent 3740560153
commit c385a34e8a

6
configure vendored
View file

@ -2610,8 +2610,10 @@ if test -n "$_host"; then
# since SDL2 manages dispmanx/GLES2 very well internally. # since SDL2 manages dispmanx/GLES2 very well internally.
# SDL1 is bit-rotten on this platform. # SDL1 is bit-rotten on this platform.
_sdlconfig=sdl2-config _sdlconfig=sdl2-config
# We should add _opengles=yes later here if we wanted the GLES renderer. # OpenGL(ES) support is mature enough as to be the best option on
# For now, we use plain SDL2 only, which in turn uses GLES2 by default. # the Raspberry Pi, so it's enabled by default.
_opengl=yes
_opengles=yes
;; ;;
dreamcast) dreamcast)
append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER" append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER"