| Index: src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp
|
| diff --git a/src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp b/src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp
|
| index d8b4e1f8ccf77071f2c1686f6a4e792da550bd9e..ee41df771520c4f290c36bff99b4a12d4b28beac 100644
|
| --- a/src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp
|
| +++ b/src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp
|
| @@ -144,6 +144,12 @@ const GrGLInterface* GrGLCreateNativeInterface() {
|
| functions->fGenVertexArrays = glGenVertexArraysOES;
|
| #endif
|
|
|
| +#if GL_EXT_debug_marker
|
| + functions->fInsertEventMarker = glInsertEventMarkerEXT;
|
| + functions->fPushGroupMarker = glPushGroupMarkerEXT;
|
| + functions->fPopGroupMarker = glPopGropuMarkerEXT;
|
| +#endif
|
| +
|
| interface->fStandard = kGLES_GrGLStandard;
|
| interface->fExtensions.init(kGLES_GrGLStandard, glGetString, NULL, glGetIntegerv);
|
|
|
|
|