Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp

Issue 133413003: Rename GrGLBinding->GrGLStandard, no longer a bitfield (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: actually fix enum names? Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
diff --git a/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp b/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
index 7a000782ca593182878b2f90beb4d443ba64f037..524ab091d6c92329bb531b5649ffbbffe8ec3865 100644
--- a/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
+++ b/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
@@ -30,7 +30,7 @@ const GrGLInterface* GrGLCreateMesaInterface() {
(GrGLGetIntegervProc) OSMesaGetProcAddress("glGetIntegerv");
GrGLExtensions extensions;
- if (!extensions.init(kDesktop_GrGLBinding, getString, getStringi, getIntegerv)) {
+ if (!extensions.init(kGL_GrGLStandard, getString, getStringi, getIntegerv)) {
return NULL;
}
@@ -220,7 +220,7 @@ const GrGLInterface* GrGLCreateMesaInterface() {
return NULL;
}
GR_GL_GET_PROC(BindFragDataLocationIndexed);
- interface->fBindingsExported = kDesktop_GrGLBinding;
+ interface->fStandard = kGL_GrGLStandard;
return interface;
} else {
return NULL;

Powered by Google App Engine
This is Rietveld 408576698