| Index: src/gpu/gl/GrGLCaps.cpp
 | 
| diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp
 | 
| index e3c61385a96f50c8c94daa0e079d0d8e320cf7bc..6522e1b14bce63256dd822c3ecb973934c50d1e5 100644
 | 
| --- a/src/gpu/gl/GrGLCaps.cpp
 | 
| +++ b/src/gpu/gl/GrGLCaps.cpp
 | 
| @@ -708,16 +708,19 @@ void GrGLCaps::initConfigTexturableTable(const GrGLContextInfo& ctxInfo, const G
 | 
|      fConfigTextureSupport[kRGBA_4444_GrPixelConfig] = true;
 | 
|      fConfigTextureSupport[kRGBA_8888_GrPixelConfig] = true;
 | 
|  
 | 
| -    // Check for 8-bit palette..
 | 
| -    GrGLint numFormats;
 | 
| -    GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
 | 
| -    if (numFormats) {
 | 
| -        SkAutoSTMalloc<10, GrGLint> formats(numFormats);
 | 
| -        GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
 | 
| -        for (int i = 0; i < numFormats; ++i) {
 | 
| -            if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
 | 
| -                fConfigTextureSupport[kIndex_8_GrPixelConfig] = true;
 | 
| -                break;
 | 
| +    // Disable this for now, while we investigate skbug.com/4333
 | 
| +    if (false) {
 | 
| +        // Check for 8-bit palette..
 | 
| +        GrGLint numFormats;
 | 
| +        GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
 | 
| +        if (numFormats) {
 | 
| +            SkAutoSTMalloc<10, GrGLint> formats(numFormats);
 | 
| +            GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
 | 
| +            for (int i = 0; i < numFormats; ++i) {
 | 
| +                if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
 | 
| +                    fConfigTextureSupport[kIndex_8_GrPixelConfig] = true;
 | 
| +                    break;
 | 
| +                }
 | 
|              }
 | 
|          }
 | 
|      }
 | 
| 
 |