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

Unified Diff: ui/ozone/common/gl_ozone_egl.h

Issue 2270463002: Add OzoneGLImpl interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 years, 3 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/BUILD.gn ('k') | ui/ozone/common/gl_ozone_egl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/common/gl_ozone_egl.h
diff --git a/ui/ozone/common/gl_ozone_egl.h b/ui/ozone/common/gl_ozone_egl.h
new file mode 100644
index 0000000000000000000000000000000000000000..300ebe717803e6f53d1ff5bf791136523a73bd0d
--- /dev/null
+++ b/ui/ozone/common/gl_ozone_egl.h
@@ -0,0 +1,53 @@
+// Copyright 2016 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.
+
+#ifndef UI_OZONE_COMMON_GL_OZONE_EGL_H_
+#define UI_OZONE_COMMON_GL_OZONE_EGL_H_
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "ui/gl/gl_implementation.h"
+#include "ui/ozone/public/gl_ozone.h"
+
+namespace ui {
+
+// A partial implementation of GLOzone for EGL.
+class GLOzoneEGL : public GLOzone {
+ public:
+ GLOzoneEGL() {}
+ ~GLOzoneEGL() override {}
+
+ // GLOzone:
+ bool InitializeGLOneOffPlatform() override;
+ bool InitializeStaticGLBindings(gl::GLImplementation implementation) override;
+ void InitializeDebugGLBindings() override;
+ void ClearGLBindings() override;
+ bool GetGLWindowSystemBindingInfo(
+ gl::GLWindowSystemBindingInfo* info) override;
+ scoped_refptr<gl::GLContext> CreateGLContext(
+ gl::GLShareGroup* share_group,
+ gl::GLSurface* compatible_surface,
+ gl::GpuPreference gpu_preference) override;
+ scoped_refptr<gl::GLSurface> CreateViewGLSurface(
+ gfx::AcceleratedWidget window) override = 0;
+ scoped_refptr<gl::GLSurface> CreateSurfacelessViewGLSurface(
+ gfx::AcceleratedWidget window) override;
+ scoped_refptr<gl::GLSurface> CreateOffscreenGLSurface(
+ const gfx::Size& size) override = 0;
+
+ protected:
+ // Returns native platform display handle. This is used to obtain the EGL
+ // display connection for the native display.
+ virtual intptr_t GetNativeDisplay() = 0;
+
+ // Sets up GL bindings for the native surface.
+ virtual bool LoadGLES2Bindings() = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(GLOzoneEGL);
+};
+
+} // namespace ui
+
+#endif // UI_OZONE_COMMON_GL_OZONE_EGL_H_
« no previous file with comments | « ui/ozone/common/BUILD.gn ('k') | ui/ozone/common/gl_ozone_egl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698