From e1b4e8f13ff4c19ceedeb476d4f7754a841fbc1e Mon Sep 17 00:00:00 2001 From: "zmo@google.com" Date: Fri, 8 Oct 2010 01:12:52 +0000 Subject: Fix the wrong mesa lib name. Review URL: http://codereview.chromium.org/3596012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61902 0039d316-1c4b-4281-b951-d872f2087c98 --- app/gfx/gl/gl_implementation_mac.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/gfx') 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; } -- cgit v1.1