From 2a5d846f74b12db867cc46a2ddfd28dc3f2e230b Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Thu, 5 May 2016 09:10:53 +1000 Subject: [PATCH] Switch android GL context to ES3, now that WR has been updated. --- ports/glutin/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 6ae14334f51..09a76398f8c 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -193,7 +193,7 @@ impl Window { #[cfg(target_os = "android")] fn gl_version() -> GlRequest { - GlRequest::Specific(Api::OpenGlEs, (2, 0)) + GlRequest::Specific(Api::OpenGlEs, (3, 0)) } #[cfg(not(target_os = "android"))]