aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGpuGL.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-21 15:53:13 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-21 15:53:13 +0000
commit8ef3fd0ca6595adb9a8172c84dc0c55c9c096e09 (patch)
tree0f7bfc41bf95f886ae3867f137e95c198047750d /src/gpu/GrGpuGL.h
parent3d60812865bb034851da777a91413ab584929887 (diff)
Add support for GL_CHROMIUM_flipy
Review URL: http://codereview.appspot.com/5413051/ git-svn-id: http://skia.googlecode.com/svn/trunk@2723 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/GrGpuGL.h')
-rw-r--r--src/gpu/GrGpuGL.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/GrGpuGL.h b/src/gpu/GrGpuGL.h
index 3b8e6d74af..eba162e2e2 100644
--- a/src/gpu/GrGpuGL.h
+++ b/src/gpu/GrGpuGL.h
@@ -55,6 +55,7 @@ protected:
, fBGRAIsInternalFormat(false)
, fTextureSwizzleSupport(false)
, fUnpackRowLengthSupport(false)
+ , fUnpackFlipYSupport(false)
, fPackRowLengthSupport(false) {
memset(fAASamples, 0, sizeof(fAASamples));
}
@@ -102,6 +103,9 @@ protected:
// Is there support for GL_UNPACK_ROW_LENGTH
bool fUnpackRowLengthSupport;
+ // Is there support for GL_UNPACK_FLIP_Y
+ bool fUnpackFlipYSupport;
+
// Is there support for GL_PACK_ROW_LENGTH
bool fPackRowLengthSupport;