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

Side by Side Diff: ui/ozone/platform/wayland/wayland_egl_surface.h

Issue 2187443003: Convert Ozone wayland to directly create GLSurfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_EGL_SURFACE_H_
6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_EGL_SURFACE_H_
7
8 #include <memory>
9
10 #include "ui/gfx/geometry/size.h"
11 #include "ui/gfx/vsync_provider.h"
12 #include "ui/ozone/public/surface_ozone_egl.h"
13
14 struct wl_egl_window;
15
16 namespace ui {
17
18 class WaylandWindow;
19
20 struct EGLWindowDeleter {
21 void operator()(wl_egl_window* egl_window);
22 };
23
24 class WaylandEGLSurface : public SurfaceOzoneEGL {
25 public:
26 WaylandEGLSurface(WaylandWindow* window, const gfx::Size& size);
27 ~WaylandEGLSurface() override;
28
29 bool Initialize();
30
31 // SurfaceOzoneEGL
32 intptr_t GetNativeWindow() override;
33 bool ResizeNativeWindow(const gfx::Size& viewport_size) override;
34 bool OnSwapBuffers() override;
35 void OnSwapBuffersAsync(const SwapCompletionCallback& callback) override;
36 std::unique_ptr<gfx::VSyncProvider> CreateVSyncProvider() override;
37 void* /* EGLConfig */ GetEGLSurfaceConfig(
38 const EglConfigCallbacks& egl) override;
39
40 private:
41 WaylandWindow* window_;
42
43 gfx::Size size_;
44 std::unique_ptr<wl_egl_window, EGLWindowDeleter> egl_window_;
45
46 DISALLOW_COPY_AND_ASSIGN(WaylandEGLSurface);
47 };
48
49 } // namespace ui
50
51 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_EGL_SURFACE_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/wayland.gypi ('k') | ui/ozone/platform/wayland/wayland_egl_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698