Index: src/gpu/GrContextFactory.h |
diff --git a/src/gpu/GrContextFactory.h b/src/gpu/GrContextFactory.h |
index b557f98fea08ff036e30ca0aa2ee56623acd6cdb..2accd7329f9f85290748e3802c051be49fb8b236 100644 |
--- a/src/gpu/GrContextFactory.h |
+++ b/src/gpu/GrContextFactory.h |
@@ -34,6 +34,9 @@ public: |
#if SK_ANGLE |
kANGLE_GLContextType, |
#endif |
+#if SK_COMMAND_BUFFER |
+ kCommandBuffer_GLContextType, |
+#endif |
#if SK_MESA |
kMESA_GLContextType, |
#endif |
@@ -68,6 +71,10 @@ public: |
case kANGLE_GLContextType: |
return "angle"; |
#endif |
+#if SK_COMMAND_BUFFER |
+ case kCommandBuffer_GLContextType: |
+ return "commandbuffer"; |
+#endif |
#if SK_MESA |
case kMESA_GLContextType: |
return "mesa"; |