Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2186)

Unified Diff: app/gfx/gl/gl_implementation_linux.cc

Issue 6325005: Relanding r71472.... Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « app/gfx/gl/gl_implementation.cc ('k') | app/gfx/gl/gl_implementation_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/gfx/gl/gl_implementation_linux.cc
===================================================================
--- app/gfx/gl/gl_implementation_linux.cc (revision 71474)
+++ app/gfx/gl/gl_implementation_linux.cc (working copy)
@@ -47,7 +47,7 @@
base::NativeLibrary library = base::LoadNativeLibrary(
module_path.Append("libosmesa.so"));
if (!library) {
- DVLOG(1) << "libosmesa.so not found";
+ VLOG(1) << "libosmesa.so not found";
return false;
}
@@ -56,7 +56,7 @@
base::GetFunctionPointerFromNativeLibrary(
library, "OSMesaGetProcAddress"));
if (!get_proc_address) {
- DLOG(ERROR) << "OSMesaGetProcAddress not found.";
+ LOG(ERROR) << "OSMesaGetProcAddress not found.";
base::UnloadNativeLibrary(library);
return false;
}
@@ -73,7 +73,7 @@
base::NativeLibrary library = base::LoadNativeLibrary(
FilePath("libGL.so.1"));
if (!library) {
- LOG(ERROR) << "libGL.so.1 not found.";
+ VLOG(1) << "libGL.so.1 not found.";
return false;
}
@@ -99,14 +99,14 @@
base::NativeLibrary gles_library = base::LoadNativeLibrary(
FilePath("libGLESv2.so"));
if (!gles_library) {
- DLOG(ERROR) << "libGLESv2.so not found";
+ VLOG(1) << "libGLESv2.so not found";
return false;
}
base::NativeLibrary egl_library = base::LoadNativeLibrary(
FilePath("libEGL.so"));
if (!egl_library) {
- DLOG(ERROR) << "libEGL.so not found";
+ VLOG(1) << "libEGL.so not found";
base::UnloadNativeLibrary(gles_library);
return false;
}
« no previous file with comments | « app/gfx/gl/gl_implementation.cc ('k') | app/gfx/gl/gl_implementation_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698