aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-15 18:57:53 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-15 18:57:53 +0000
commiteb170703fcd46bba729f2fdf7cd32460baaaaf06 (patch)
treee1d97a241e903c8025408d2749d8057072141ad5 /include
parent791816a87a569969c98167ca197ad106543e7f92 (diff)
missing header from previous commit
git-svn-id: http://skia.googlecode.com/svn/trunk@10748 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/gpu/gl/GrGLInterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gpu/gl/GrGLInterface.h b/include/gpu/gl/GrGLInterface.h
index 6a51adceea..c58c5bcb55 100644
--- a/include/gpu/gl/GrGLInterface.h
+++ b/include/gpu/gl/GrGLInterface.h
@@ -23,11 +23,11 @@ enum GrGLBinding {
kNone_GrGLBinding = 0x0,
kDesktop_GrGLBinding = 0x01,
- kES2_GrGLBinding = 0x02,
+ kES_GrGLBinding = 0x02, // ES2+ only
// for iteration of GrGLBindings
kFirstGrGLBinding = kDesktop_GrGLBinding,
- kLastGrGLBinding = kES2_GrGLBinding
+ kLastGrGLBinding = kES_GrGLBinding
};
////////////////////////////////////////////////////////////////////////////////