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

Unified Diff: ui/gl/init/gl_factory_win.cc

Issue 2047283003: Move GLSurface creation from //ui/gl to //ui/gl/init. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gl_context
Patch Set: Fix Ozone CreateViewGLSurface logic. Created 4 years, 6 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 | « ui/gl/init/gl_factory_ozone.cc ('k') | ui/gl/init/gl_factory_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/init/gl_factory_win.cc
diff --git a/ui/gl/init/gl_factory_win.cc b/ui/gl/init/gl_factory_win.cc
index e7281487515c103de67a2d88e6792f7f86e974b0..5d560fd61449b5da67ef15b08777b6a267672b5b 100644
--- a/ui/gl/init/gl_factory_win.cc
+++ b/ui/gl/init/gl_factory_win.cc
@@ -14,6 +14,12 @@
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_share_group.h"
#include "ui/gl/gl_surface.h"
+#include "ui/gl/gl_surface_egl.h"
+#include "ui/gl/gl_surface_osmesa.h"
+#include "ui/gl/gl_surface_osmesa_win.h"
+#include "ui/gl/gl_surface_stub.h"
+#include "ui/gl/gl_surface_wgl.h"
+#include "ui/gl/vsync_provider_win.h"
namespace gl {
namespace init {
@@ -40,5 +46,49 @@ scoped_refptr<GLContext> CreateGLContext(GLShareGroup* share_group,
}
}
+scoped_refptr<GLSurface> CreateViewGLSurface(gfx::AcceleratedWidget window) {
+ TRACE_EVENT0("gpu", "gl::init::CreateViewGLSurface");
+ switch (GetGLImplementation()) {
+ case kGLImplementationOSMesaGL:
+ return InitializeGLSurface(new GLSurfaceOSMesaWin(window));
+ case kGLImplementationEGLGLES2: {
+ DCHECK(window != gfx::kNullAcceleratedWidget);
+ scoped_refptr<NativeViewGLSurfaceEGL> surface(
+ new NativeViewGLSurfaceEGL(window));
+ std::unique_ptr<gfx::VSyncProvider> sync_provider;
+ sync_provider.reset(new VSyncProviderWin(window));
+ if (!surface->Initialize(std::move(sync_provider)))
+ return nullptr;
+
+ return surface;
+ }
+ case kGLImplementationDesktopGL:
+ return InitializeGLSurface(new NativeViewGLSurfaceWGL(window));
+ case kGLImplementationMockGL:
+ return new GLSurfaceStub;
+ default:
+ NOTREACHED();
+ return nullptr;
+ }
+}
+
+scoped_refptr<GLSurface> CreateOffscreenGLSurface(const gfx::Size& size) {
+ TRACE_EVENT0("gpu", "gl::init::CreateOffscreenGLSurface");
+ switch (GetGLImplementation()) {
+ case kGLImplementationOSMesaGL:
+ return InitializeGLSurface(
+ new GLSurfaceOSMesa(GLSurface::SURFACE_OSMESA_RGBA, size));
+ case kGLImplementationEGLGLES2:
+ return InitializeGLSurface(new PbufferGLSurfaceEGL(size));
+ case kGLImplementationDesktopGL:
+ return InitializeGLSurface(new PbufferGLSurfaceWGL(size));
+ case kGLImplementationMockGL:
+ return new GLSurfaceStub;
+ default:
+ NOTREACHED();
+ return nullptr;
+ }
+}
+
} // namespace init
} // namespace gl
« no previous file with comments | « ui/gl/init/gl_factory_ozone.cc ('k') | ui/gl/init/gl_factory_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698