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

Side by Side Diff: ui/ozone/platform/dri/gbm_surface_factory.h

Issue 741253002: Add AcceleratedWidget to native pixmap allocation to specify which display controller to create the… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DRI_GBM_SURFACE_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_DRI_GBM_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_DRI_GBM_SURFACE_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_DRI_GBM_SURFACE_FACTORY_H_
7 7
8 #include "ui/ozone/platform/dri/dri_surface_factory.h" 8 #include "ui/ozone/platform/dri/dri_surface_factory.h"
9 9
10 struct gbm_device; 10 struct gbm_device;
(...skipping 17 matching lines...) Expand all
28 intptr_t GetNativeDisplay() override; 28 intptr_t GetNativeDisplay() override;
29 const int32_t* GetEGLSurfaceProperties(const int32_t* desired_list) override; 29 const int32_t* GetEGLSurfaceProperties(const int32_t* desired_list) override;
30 bool LoadEGLGLES2Bindings( 30 bool LoadEGLGLES2Bindings(
31 AddGLLibraryCallback add_gl_library, 31 AddGLLibraryCallback add_gl_library,
32 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override; 32 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
33 scoped_ptr<ui::SurfaceOzoneEGL> CreateEGLSurfaceForWidget( 33 scoped_ptr<ui::SurfaceOzoneEGL> CreateEGLSurfaceForWidget(
34 gfx::AcceleratedWidget w) override; 34 gfx::AcceleratedWidget w) override;
35 scoped_ptr<SurfaceOzoneEGL> CreateSurfacelessEGLSurfaceForWidget( 35 scoped_ptr<SurfaceOzoneEGL> CreateSurfacelessEGLSurfaceForWidget(
36 gfx::AcceleratedWidget widget) override; 36 gfx::AcceleratedWidget widget) override;
37 scoped_refptr<ui::NativePixmap> CreateNativePixmap( 37 scoped_refptr<ui::NativePixmap> CreateNativePixmap(
38 gfx::AcceleratedWidget widget,
38 gfx::Size size, 39 gfx::Size size,
39 BufferFormat format, 40 BufferFormat format,
40 BufferUsage usage) override; 41 BufferUsage usage) override;
41 OverlayCandidatesOzone* GetOverlayCandidates( 42 OverlayCandidatesOzone* GetOverlayCandidates(
42 gfx::AcceleratedWidget w) override; 43 gfx::AcceleratedWidget w) override;
43 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, 44 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
44 int plane_z_order, 45 int plane_z_order,
45 gfx::OverlayTransform plane_transform, 46 gfx::OverlayTransform plane_transform,
46 scoped_refptr<NativePixmap> buffer, 47 scoped_refptr<NativePixmap> buffer,
47 const gfx::Rect& display_bounds, 48 const gfx::Rect& display_bounds,
48 const gfx::RectF& crop_rect) override; 49 const gfx::RectF& crop_rect) override;
49 bool CanShowPrimaryPlaneAsOverlay() override; 50 bool CanShowPrimaryPlaneAsOverlay() override;
50 bool CanCreateNativePixmap(BufferUsage usage) override; 51 bool CanCreateNativePixmap(BufferUsage usage) override;
51 52
52 private: 53 private:
53 DriWindowDelegate* GetOrCreateWindowDelegate(gfx::AcceleratedWidget widget); 54 DriWindowDelegate* GetOrCreateWindowDelegate(gfx::AcceleratedWidget widget);
54 55
55 gbm_device* device_; // Not owned. 56 gbm_device* device_; // Not owned.
56 bool allow_surfaceless_; 57 bool allow_surfaceless_;
57 58
58 DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory); 59 DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory);
59 }; 60 };
60 61
61 } // namespace ui 62 } // namespace ui
62 63
63 #endif // UI_OZONE_PLATFORM_DRI_GBM_SURFACE_FACTORY_H_ 64 #endif // UI_OZONE_PLATFORM_DRI_GBM_SURFACE_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc ('k') | ui/ozone/platform/dri/gbm_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698