Index: cc/trees/layer_tree_host_impl.cc |
diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc |
index 26ba2ee7f32bab8bf4c4f8af92be58cb7c2dc154..7932132446eae68054fbd20d681a8f079b2be4f2 100644 |
--- a/cc/trees/layer_tree_host_impl.cc |
+++ b/cc/trees/layer_tree_host_impl.cc |
@@ -109,14 +109,10 @@ unsigned GetMapImageTextureTarget(cc::ContextProvider* context_provider) { |
if (!context_provider) |
return GL_TEXTURE_2D; |
- // TODO(reveman): Determine if GL_TEXTURE_EXTERNAL_OES works well on |
- // Android before we enable this. crbug.com/322780 |
-#if !defined(OS_ANDROID) |
if (context_provider->ContextCapabilities().gpu.egl_image_external) |
return GL_TEXTURE_EXTERNAL_OES; |
if (context_provider->ContextCapabilities().gpu.texture_rectangle) |
return GL_TEXTURE_RECTANGLE_ARB; |
-#endif |
return GL_TEXTURE_2D; |
} |