From 56f38fb7a9ccd1c0e04ea4896ef7724836836671 Mon Sep 17 00:00:00 2001 From: reed Date: Mon, 14 Sep 2015 09:09:00 -0700 Subject: disable kIndex_8 gpu support for now -- seems to always be slower BUG=skia:4333 Review URL: https://codereview.chromium.org/1339103002 --- src/gpu/gl/GrGLCaps.cpp | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp index e3c61385a9..6522e1b14b 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; + } } } } -- cgit v1.2.3