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

Unified Diff: ui/gl/gl_implementation.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: ui/gl/gl_implementation.cc
diff --git a/ui/gl/gl_implementation.cc b/ui/gl/gl_implementation.cc
index d8de8c26913c24ee4c96a45ff1533bfc63a38a62..e1e0f5e355b2501ee8330c72efd6f91622ebc556 100644
--- a/ui/gl/gl_implementation.cc
+++ b/ui/gl/gl_implementation.cc
@@ -12,6 +12,10 @@
#include "base/logging.h"
#include "ui/gl/gl_bindings.h"
+#if defined(USE_OZONE)
+#include "ui/gfx/ozone/surface_factory_ozone.h"
+#endif
+
namespace gfx {
namespace {
@@ -142,8 +146,13 @@ void* GetGLCoreProcAddress(const char* name) {
if (g_libraries) {
for (size_t i = 0; i < g_libraries->size(); ++i) {
+#if defined(USE_OZONE)
+ void* proc = gfx::SurfaceFactoryOzone::GetInstance()->
+ GetFunctionPointerFromNativeLibrary((*g_libraries)[i], name);
+#else
void* proc = base::GetFunctionPointerFromNativeLibrary((*g_libraries)[i],
name);
+#endif
if (proc)
return proc;
}
« ui/gl/gl_image_egl.cc ('K') | « ui/gl/gl_image_ozone.cc ('k') | ui/gl/gl_surface_egl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698