aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-10 20:25:36 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-10 20:25:36 +0000
commitb447d215772a5984dc776a8dc058e0711d566c04 (patch)
treebe5143fed4eb226f43dbc52177008f486189c329 /include/gpu
parent89ec61e33daa9cbac200d38f7c5bb8b88046999a (diff)
Fix dumb error of starting loop with 0 instead of 1 that uses shift to increment.
git-svn-id: http://skia.googlecode.com/svn/trunk@3163 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu')
-rw-r--r--include/gpu/GrGLInterface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/gpu/GrGLInterface.h b/include/gpu/GrGLInterface.h
index fa284d4a97..1b8b3be979 100644
--- a/include/gpu/GrGLInterface.h
+++ b/include/gpu/GrGLInterface.h
@@ -31,6 +31,7 @@ enum GrGLBinding {
kES2_GrGLBinding = 0x02,
// for iteration of GrGLBindings
+ kFirstGrGLBinding = kDesktop_GrGLBinding,
kLastGrGLBinding = kES2_GrGLBinding
};