diff options
-rw-r--r-- | app/gfx/gl/gl_implementation_mac.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/gfx/gl/gl_implementation_mac.cc b/app/gfx/gl/gl_implementation_mac.cc index 73f8462..417c356 100644 --- a/app/gfx/gl/gl_implementation_mac.cc +++ b/app/gfx/gl/gl_implementation_mac.cc @@ -33,9 +33,9 @@ bool InitializeGLBindings(GLImplementation implementation) { // When using OSMesa, just use OSMesaGetProcAddress to find entry points. base::NativeLibrary library = base::LoadNativeLibrary( - module_path.Append("libosmesa.dylib")); + module_path.Append("osmesa.so")); if (!library) { - DLOG(INFO) << "libosmesa.so not found"; + DLOG(INFO) << "osmesa.so not found"; return false; } |