app: make OpenGL default on Android

Like commit dbf6429026, this change
makes the OpenGL backend default for Android.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2022-10-22 15:03:38 -06:00
parent dead6e007f
commit b707b199b3
+1 -1
View File
@@ -314,7 +314,7 @@ const (
)
func (w *window) NewContext() (context, error) {
funcs := []func(w *window) (context, error){newAndroidVulkanContext, newAndroidGLESContext}
funcs := []func(w *window) (context, error){newAndroidGLESContext, newAndroidVulkanContext}
var firstErr error
for _, f := range funcs {
if f == nil {