diff options
author | 2011-11-10 14:54:14 +0000 | |
---|---|---|
committer | 2011-11-10 14:54:14 +0000 | |
commit | 7107fa789a5999e3f8f7cf7c9c4208c2c443d2af (patch) | |
tree | 24b232688dc14a5d3ce2d600d898d230522d7be1 /src/gpu/GrGpuGLShaders.cpp | |
parent | 3d3dfe011ca477ed96ccac2d1a293cd302fb245e (diff) |
Add support for GL_EXT_unpack_subimage
Review URL: http://codereview.appspot.com/5359048/
git-svn-id: http://skia.googlecode.com/svn/trunk@2654 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/GrGpuGLShaders.cpp')
-rw-r--r-- | src/gpu/GrGpuGLShaders.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrGpuGLShaders.cpp b/src/gpu/GrGpuGLShaders.cpp index 0961548bdb..67b1c375e1 100644 --- a/src/gpu/GrGpuGLShaders.cpp +++ b/src/gpu/GrGpuGLShaders.cpp @@ -1001,7 +1001,7 @@ void GrGpuGLShaders::buildProgram(GrPrimitiveType type, stage.fOptFlags |= StageDesc::kCustomTextureDomain_OptFlagBit; } - if (!this->glCaps().fTextureSwizzle) { + if (!this->glCaps().fTextureSwizzleSupport) { if (GrPixelConfigIsAlphaOnly(texture->config())) { // if we don't have texture swizzle support then // the shader must do an alpha smear after reading |