aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/gl/SkMesaGLContext.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-19 19:27:19 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-19 19:27:19 +0000
commitb3400badf022b4ff6f3545d1baa706affc22d93d (patch)
tree06bb7dd68d09bde2a9afd78c2b4a7d103710dd6b /include/gpu/gl/SkMesaGLContext.h
parent57b1935dbc6f8b8857d430fdf244dbe2c2e1ae5b (diff)
Fix undefined GLint in Mac builds
git-svn-id: http://skia.googlecode.com/svn/trunk@3736 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu/gl/SkMesaGLContext.h')
-rw-r--r--include/gpu/gl/SkMesaGLContext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gpu/gl/SkMesaGLContext.h b/include/gpu/gl/SkMesaGLContext.h
index 5c329ff120..14a3ca7b27 100644
--- a/include/gpu/gl/SkMesaGLContext.h
+++ b/include/gpu/gl/SkMesaGLContext.h
@@ -30,9 +30,9 @@ public:
private:
Context fOldContext;
- GLint fOldWidth;
- GLint fOldHeight;
- GLint fOldFormat;
+ GrGLint fOldWidth;
+ GrGLint fOldHeight;
+ GrGLint fOldFormat;
void* fOldImage;
};