aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-16 18:49:01 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-16 18:49:01 +0000
commitcc190eb6f321d0255ca035dc1ceef53af3900f4a (patch)
tree6ffc4bc6283689c65075f85b56e749998b760aaa /include/gpu
parentb1854a85095f9924947bc00e665da47b0c0bdfb9 (diff)
Allow GrGLInterface factories in Chromium to continue to compile.
BUG=skia:2042 TBR=jvanverth@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/136573003 git-svn-id: http://skia.googlecode.com/svn/trunk@13112 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu')
-rw-r--r--include/gpu/gl/GrGLInterface.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/gpu/gl/GrGLInterface.h b/include/gpu/gl/GrGLInterface.h
index 2471da90a1..857a272208 100644
--- a/include/gpu/gl/GrGLInterface.h
+++ b/include/gpu/gl/GrGLInterface.h
@@ -23,8 +23,10 @@ enum GrGLStandard {
kGLES_GrGLStandard,
};
-// Temporary alias until Chromium can be updated.
+// Temporary aliases until Chromium can be updated.
+typedef GrGLStandard GrGLBinding;
static const GrGLStandard kES2_GrGLBinding = kGLES_GrGLStandard;
+static const GrGLStandard kDesktop_GrGLBinding = kGL_GrGLStandard;
////////////////////////////////////////////////////////////////////////////////