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

Side by Side Diff: ui/ozone/platform/cast/gl_surface_cast.h

Issue 2179163003: Convert Ozone cast to directly create GLSurfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change to PBuffer. 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
« no previous file with comments | « ui/ozone/platform/cast/cast.gypi ('k') | ui/ozone/platform/cast/gl_surface_cast.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_CAST_GL_SURFACE_CAST_H_
6 #define UI_OZONE_PLATFORM_CAST_GL_SURFACE_CAST_H_
7
8 #include "base/macros.h"
9 #include "ui/gfx/geometry/size.h"
10 #include "ui/gfx/native_widget_types.h"
11 #include "ui/gfx/overlay_transform.h"
12 #include "ui/gfx/swap_result.h"
13 #include "ui/gl/gl_image.h"
14 #include "ui/gl/gl_surface_egl.h"
15
16 namespace ui {
17
18 class SurfaceFactoryCast;
19
20 class GLSurfaceCast : public gl::NativeViewGLSurfaceEGL {
21 public:
22 GLSurfaceCast(gfx::AcceleratedWidget widget, SurfaceFactoryCast* parent);
23
24 // gl::GLSurface:
25 gfx::SwapResult SwapBuffers() override;
26 bool Resize(const gfx::Size& size,
27 float scale_factor,
28 bool has_alpha) override;
29 bool ScheduleOverlayPlane(int z_order,
30 gfx::OverlayTransform transform,
31 gl::GLImage* image,
32 const gfx::Rect& bounds_rect,
33 const gfx::RectF& crop_rect) override;
34 EGLConfig GetConfig() override;
35
36 protected:
37 ~GLSurfaceCast() override;
38
39 gfx::AcceleratedWidget widget_;
40 SurfaceFactoryCast* parent_;
41
42 private:
43 DISALLOW_COPY_AND_ASSIGN(GLSurfaceCast);
44 };
45
46 } // namespace ui
47
48 #endif // UI_OZONE_PLATFORM_CAST_GL_SURFACE_CAST_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/cast/cast.gypi ('k') | ui/ozone/platform/cast/gl_surface_cast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698