Auto merge of #11021 - glennw:es3-android, r=larsbergstrom

Switch android GL context to ES3, now that WR has been updated.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11021)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-05 04:30:52 -07:00
commit 38311b6fce

View file

@ -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"))]