This was changed
authorMatthew Leibowitz <mattleibow@live.com>
Wed, 27 Jun 2018 16:28:24 +0000 (18:28 +0200)
committerMatthew Leibowitz <mattleibow@live.com>
Wed, 27 Jun 2018 16:28:24 +0000 (18:28 +0200)
src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp

index f714cb259558b1a230e89d6def8a103e1a1b7564..f4d3a12c9b7a049b0cc95f69e976237731699dcc 100644 (file)
@@ -65,12 +65,12 @@ static GrGLFuncPtr glx_get(void* ctx, const char name[]) {
     return getter->getProc(reinterpret_cast<const GLubyte*>(name));
 }
 
-const GrGLInterface* GrGLCreateNativeInterface() {
+const GrGLInterface* GrGLMakeNativeInterface() {
     GLXProcGetter getter;
 
     if (nullptr == getter.getCurrentContext()) {
         return nullptr;
     }
 
-    return GrGLAssembleInterface(&getter, glx_get);
+    return GrGLMakeAssembledInterface(&getter, glx_get);
 }