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

Side by Side Diff: ui/ozone/platform/wayland/wayland_surface_factory.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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
7 7
8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h"
10 #include "ui/gl/gl_surface.h"
8 #include "ui/ozone/public/surface_factory_ozone.h" 11 #include "ui/ozone/public/surface_factory_ozone.h"
9 12
10 namespace ui { 13 namespace ui {
11 14
12 class WaylandConnection; 15 class WaylandConnection;
13 16
14 class WaylandSurfaceFactory : public SurfaceFactoryOzone { 17 class WaylandSurfaceFactory : public SurfaceFactoryOzone {
15 public: 18 public:
16 explicit WaylandSurfaceFactory(WaylandConnection* connection); 19 explicit WaylandSurfaceFactory(WaylandConnection* connection);
17 ~WaylandSurfaceFactory() override; 20 ~WaylandSurfaceFactory() override;
18 21
22 // SurfaceFactoryOzone:
23 scoped_refptr<gl::GLSurface> CreateViewGLSurface(
24 gl::GLImplementation implementation,
25 gfx::AcceleratedWidget widget) override;
26 scoped_refptr<gl::GLSurface> CreateOffscreenGLSurface(
27 gl::GLImplementation implementation,
28 const gfx::Size& size) override;
19 intptr_t GetNativeDisplay() override; 29 intptr_t GetNativeDisplay() override;
20 bool LoadEGLGLES2Bindings( 30 bool LoadEGLGLES2Bindings(
21 AddGLLibraryCallback add_gl_library, 31 AddGLLibraryCallback add_gl_library,
22 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override; 32 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
23 std::unique_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget( 33 std::unique_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
24 gfx::AcceleratedWidget widget) override; 34 gfx::AcceleratedWidget widget) override;
25 std::unique_ptr<SurfaceOzoneEGL> CreateEGLSurfaceForWidget(
26 gfx::AcceleratedWidget w) override;
27 scoped_refptr<NativePixmap> CreateNativePixmap( 35 scoped_refptr<NativePixmap> CreateNativePixmap(
28 gfx::AcceleratedWidget widget, 36 gfx::AcceleratedWidget widget,
29 gfx::Size size, 37 gfx::Size size,
30 gfx::BufferFormat format, 38 gfx::BufferFormat format,
31 gfx::BufferUsage usage) override; 39 gfx::BufferUsage usage) override;
32 scoped_refptr<NativePixmap> CreateNativePixmapFromHandle( 40 scoped_refptr<NativePixmap> CreateNativePixmapFromHandle(
33 gfx::AcceleratedWidget widget, 41 gfx::AcceleratedWidget widget,
34 gfx::Size size, 42 gfx::Size size,
35 gfx::BufferFormat format, 43 gfx::BufferFormat format,
36 const gfx::NativePixmapHandle& handle) override; 44 const gfx::NativePixmapHandle& handle) override;
37 45
38 private: 46 private:
39 WaylandConnection* connection_; 47 WaylandConnection* connection_;
40 48
41 DISALLOW_COPY_AND_ASSIGN(WaylandSurfaceFactory); 49 DISALLOW_COPY_AND_ASSIGN(WaylandSurfaceFactory);
42 }; 50 };
43 51
44 } // namespace ui 52 } // namespace ui
45 53
46 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 54 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/wayland_egl_surface.cc ('k') | ui/ozone/platform/wayland/wayland_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698