From e690c14ddc9f59cb1773f93cd42679cffb802d9f Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Mon, 12 Oct 2020 15:16:56 +0200 Subject: [PATCH] cmd/gogio: lower minimum OpenGL ES to 2.0 on Android The Fairphone 2 only supports OpenGL ES 2.0, but otherwise seems capable of running Gio. By lowering the minimum requirement, Gio apps will be available in the Play Store for Fairphone 2 devices. Signed-off-by: Elias Naur --- cmd/gogio/permission.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gogio/permission.go b/cmd/gogio/permission.go index d6f2db2c..f4c25c4c 100644 --- a/cmd/gogio/permission.go +++ b/cmd/gogio/permission.go @@ -19,7 +19,7 @@ var AndroidPermissions = map[string][]string{ } var AndroidFeatures = map[string][]string{ - "default": {`glEsVersion="0x00030000"`, `name="android.hardware.type.pc"`}, + "default": {`glEsVersion="0x00020000"`, `name="android.hardware.type.pc"`}, "bluetooth": { `name="android.hardware.bluetooth"`, `name="android.hardware.bluetooth_le"`,