| Index: src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
|
| diff --git a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
|
| index 67d7ef5a5f16b5c7c84e8005faa60ef5daee447c..8ef5ca231e5cb7d0e6dfdffcfadb78aa22f85072 100644
|
| --- a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
|
| +++ b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
|
| @@ -275,6 +275,12 @@ const GrGLInterface* GrGLCreateNativeInterface() {
|
| GR_GL_GET_PROC_SUFFIX(PointAlongPath, NV);
|
| }
|
|
|
| + if (extensions.has("GL_EXT_debug_marker")) {
|
| + GR_GL_GET_PROC_SUFFIX(InsertEventMarker, EXT);
|
| + GR_GL_GET_PROC_SUFFIX(PushGroupMarker, EXT);
|
| + GR_GL_GET_PROC_SUFFIX(PopGroupMarker, EXT);
|
| + }
|
| +
|
| interface->fStandard = kGL_GrGLStandard;
|
| interface->fExtensions.swap(&extensions);
|
|
|
|
|