Index: src/gpu/gl/GrGLInterface.cpp |
=================================================================== |
--- src/gpu/gl/GrGLInterface.cpp (revision 10811) |
+++ src/gpu/gl/GrGLInterface.cpp (working copy) |
@@ -290,7 +290,7 @@ |
return false; |
} |
} |
robertphillips
2013/08/21 12:56:48
Don't we need the Qualcomm clause here too?
bsalomon
2013/08/21 13:50:19
I don't think so. We want the client to always giv
|
- } else if (extensions.has("GL_EXT_texture_storage")) { |
+ } else if (glVer >= GR_GL_VER(3,0) || extensions.has("GL_EXT_texture_storage")) { |
if (NULL == fTexStorage2D) { |
return false; |
} |