diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 01:12:52 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 01:12:52 +0000 |
commit | e1b4e8f13ff4c19ceedeb476d4f7754a841fbc1e (patch) | |
tree | c7f0a2de884babcc1701c9d4e4b4d75de21514b9 /app | |
parent | 2f7ef0295d737c4a519171c25272a62179cb924a (diff) | |
download | chromium_src-e1b4e8f13ff4c19ceedeb476d4f7754a841fbc1e.zip chromium_src-e1b4e8f13ff4c19ceedeb476d4f7754a841fbc1e.tar.gz chromium_src-e1b4e8f13ff4c19ceedeb476d4f7754a841fbc1e.tar.bz2 |
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
Diffstat (limited to 'app')
-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; } |