Index: src/gpu/gl/GrGLCaps.cpp |
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp |
index fdf6cacc08bb41dccab4cb467aabc857a08823fd..da4d21e37f5260517cf0c71039bdbf5d9c9d0a6d 100644 |
--- a/src/gpu/gl/GrGLCaps.cpp |
+++ b/src/gpu/gl/GrGLCaps.cpp |
@@ -531,6 +531,11 @@ void GrGLCaps::initConfigTexturableTable(const GrGLContextInfo& ctxInfo, const G |
fConfigTextureSupport[kLATC_GrPixelConfig] = hasLATC; |
fLATCAlias = alias; |
+ |
+ // Check for R11_EAC |
robertphillips
2014/06/27 16:56:47
What about GL_ARB_ES3_compatibility ?
krajcevski
2014/06/27 17:49:37
Done.
|
+ fConfigTextureSupport[kR11_EAC_GrPixelConfig] = |
+ ((kGL_GrGLStandard == standard) && (version >= GR_GL_VER(4, 3))) || |
+ ((kGLES_GrGLStandard == standard) && (version >= GR_GL_VER(3, 0))); |
} |
bool GrGLCaps::readPixelsSupported(const GrGLInterface* intf, |