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

Unified Diff: dm/DMGpuSupport.h

Issue 1306823003: skia: add ability to load command_buffer_gles2 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: and NULL->nullptr, just because. Created 5 years, 4 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
« no previous file with comments | « dm/DM.cpp ('k') | gyp/common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMGpuSupport.h
diff --git a/dm/DMGpuSupport.h b/dm/DMGpuSupport.h
index 4025f31559e076258d55a858a2825c92cce799f0..3b64bd82c4e1ba81e0954c1e1b0e9601d81b8be2 100644
--- a/dm/DMGpuSupport.h
+++ b/dm/DMGpuSupport.h
@@ -64,12 +64,13 @@ public:
typedef int GLContextType;
- static const GLContextType kANGLE_GLContextType = 0,
- kDebug_GLContextType = 0,
- kMESA_GLContextType = 0,
- kNVPR_GLContextType = 0,
- kNative_GLContextType = 0,
- kNull_GLContextType = 0;
+ static const GLContextType kANGLE_GLContextType = 0,
+ kCommandBuffer_GLContextType = 0,
+ kDebug_GLContextType = 0,
+ kMESA_GLContextType = 0,
+ kNVPR_GLContextType = 0,
+ kNative_GLContextType = 0,
+ kNull_GLContextType = 0;
static const int kGLContextTypeCnt = 1;
void destroyContexts() {}
« no previous file with comments | « dm/DM.cpp ('k') | gyp/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698