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

Unified Diff: ui/ozone/common/gl_ozone_osmesa.cc

Issue 2731733002: Convert Ozone GL OSMesa implementation. (Closed)
Patch Set: Fix rebase. Created 3 years, 10 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/ozone/common/gl_ozone_osmesa.h ('k') | ui/ozone/platform/cast/surface_factory_cast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/common/gl_ozone_osmesa.cc
diff --git a/ui/ozone/common/gl_ozone_osmesa.cc b/ui/ozone/common/gl_ozone_osmesa.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2ee4dbba2d61723f0b521f6b2f9a39f4f5c777f8
--- /dev/null
+++ b/ui/ozone/common/gl_ozone_osmesa.cc
@@ -0,0 +1,72 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/ozone/common/gl_ozone_osmesa.h"
+
+#include "ui/gl/gl_bindings.h"
+#include "ui/gl/gl_context.h"
+#include "ui/gl/gl_context_osmesa.h"
+#include "ui/gl/gl_gl_api_implementation.h"
+#include "ui/gl/gl_implementation_osmesa.h"
+#include "ui/gl/gl_osmesa_api_implementation.h"
+#include "ui/gl/gl_share_group.h"
+#include "ui/gl/gl_surface.h"
+#include "ui/gl/gl_surface_format.h"
+#include "ui/gl/gl_surface_osmesa.h"
+
+namespace ui {
+
+GLOzoneOSMesa::GLOzoneOSMesa() {}
+
+GLOzoneOSMesa::~GLOzoneOSMesa() {}
+
+bool GLOzoneOSMesa::InitializeGLOneOffPlatform() {
+ return true;
+}
+
+bool GLOzoneOSMesa::InitializeStaticGLBindings(
+ gl::GLImplementation implementation) {
+ return gl::InitializeStaticGLBindingsOSMesaGL();
+}
+
+void GLOzoneOSMesa::InitializeDebugGLBindings() {
+ gl::InitializeDebugGLBindingsGL();
+ gl::InitializeDebugGLBindingsOSMESA();
+}
+
+void GLOzoneOSMesa::ShutdownGL() {
+ gl::ClearBindingsGL();
+ gl::ClearBindingsOSMESA();
+}
+
+bool GLOzoneOSMesa::GetGLWindowSystemBindingInfo(
+ gl::GLWindowSystemBindingInfo* info) {
+ return false;
+}
+
+scoped_refptr<gl::GLContext> GLOzoneOSMesa::CreateGLContext(
+ gl::GLShareGroup* share_group,
+ gl::GLSurface* compatible_surface,
+ const gl::GLContextAttribs& attribs) {
+ return gl::InitializeGLContext(new gl::GLContextOSMesa(share_group),
+ compatible_surface, attribs);
+}
+
+scoped_refptr<gl::GLSurface> GLOzoneOSMesa::CreateViewGLSurface(
+ gfx::AcceleratedWidget window) {
+ return gl::InitializeGLSurface(new gl::GLSurfaceOSMesaHeadless());
+}
+
+scoped_refptr<gl::GLSurface> GLOzoneOSMesa::CreateSurfacelessViewGLSurface(
+ gfx::AcceleratedWidget window) {
+ return nullptr;
+}
+
+scoped_refptr<gl::GLSurface> GLOzoneOSMesa::CreateOffscreenGLSurface(
+ const gfx::Size& size) {
+ return gl::InitializeGLSurface(
+ new gl::GLSurfaceOSMesa(gl::GLSurfaceFormat::PIXEL_LAYOUT_BGRA, size));
+}
+
+} // namespace ui
« no previous file with comments | « ui/ozone/common/gl_ozone_osmesa.h ('k') | ui/ozone/platform/cast/surface_factory_cast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698