aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorCameron Cawley2019-09-08 19:37:48 +0100
committerGitHub2019-09-08 19:37:48 +0100
commit7a05624e1b3371a2823a46749083fe4bc9eb4a60 (patch)
treebbea40660b338a7f830a15a0d9d1a18ed283ccb5 /configure
parent997e15878ad72e773ca3835b756daf02d0f7334d (diff)
downloadscummvm-rg350-7a05624e1b3371a2823a46749083fe4bc9eb4a60.tar.gz
scummvm-rg350-7a05624e1b3371a2823a46749083fe4bc9eb4a60.tar.bz2
scummvm-rg350-7a05624e1b3371a2823a46749083fe4bc9eb4a60.zip
ANDROID: Rewrite to make use of OpenGLGraphicsManager (#1695)
* ANDROID: Rewrite to make use of OpenGLGraphicsManager * ANDROID: Fix emulated mouse button up events
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 935f53f986..fcc16b81f0 100755
--- a/configure
+++ b/configure
@@ -5075,6 +5075,10 @@ esac
if test "$_opengl_mode" = auto ; then
case $_backend in
+ android)
+ # Android always runs in GLES mode
+ _opengl_mode=gles
+ ;;
sdl)
case $_sdlversion in
1.2.*)