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

Unified Diff: ui/gfx/ozone/dri/hardware_display_controller.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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/gfx/ozone/dri/gbm_surface_factory.cc ('k') | ui/gfx/ozone/dri/hardware_display_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/dri/hardware_display_controller.h
diff --git a/ui/gfx/ozone/dri/hardware_display_controller.h b/ui/gfx/ozone/dri/hardware_display_controller.h
index cae8a6ba821f49dc4cdfd23e7f562ae9851b34a9..0a15183e89c9d32b7811116401a15461495d99a7 100644
--- a/ui/gfx/ozone/dri/hardware_display_controller.h
+++ b/ui/gfx/ozone/dri/hardware_display_controller.h
@@ -14,10 +14,12 @@
#include "base/memory/scoped_ptr.h"
#include "ui/gfx/gfx_export.h"
#include "ui/gfx/ozone/dri/dri_wrapper.h"
+#include "ui/gfx/rect.h"
+#include "ui/gfx/size.h"
namespace gfx {
-class DriSurface;
+class ScanoutSurface;
// The HDCOz will handle modesettings and scannout operations for hardware
// devices.
@@ -115,7 +117,20 @@ class GFX_EXPORT HardwareDisplayController {
drmModeModeInfo mode);
// Associate the HDCO with a surface implementation and initialize it.
- bool BindSurfaceToController(scoped_ptr<DriSurface> surface);
+ bool BindSurfaceToController(scoped_ptr<ScanoutSurface> surface);
+
+ // Register the framebuffer with handle |handle| with the CRTC. On successful
+ // registration an ID will be associated with it. The ID will be stored in
+ // |framebuffer_id|. The ID will be used when the HDCO will scan out the
+ // framebuffer.
+ bool AddFramebuffer(uint8_t depth,
+ uint8_t bpp,
+ uint32_t stride,
+ uint32_t handle,
+ uint32_t* framebuffer_id);
+
+ // Remove the association for the framebuffer with ID |framebuffer_id|.
+ bool RemoveFramebuffer(uint32_t framebuffer_id);
// Schedules the |surface_|'s framebuffer to be displayed on the next vsync
// event. The event will be posted on the graphics card file descriptor |fd_|
@@ -145,13 +160,17 @@ class GFX_EXPORT HardwareDisplayController {
unsigned int seconds,
unsigned int useconds);
+ void SetOverlayPlaneInfo(gfx::Rect overlay_plane_rect,
+ gfx::Size overlay_plane_size,
+ unsigned overlay_plane_fb_id);
+
State get_state() const { return state_; };
int get_fd() const { return drm_->get_fd(); };
const drmModeModeInfo& get_mode() const { return mode_; };
- DriSurface* get_surface() const { return surface_.get(); };
+ ScanoutSurface* get_surface() const { return surface_.get(); };
uint64_t get_time_of_last_flip() const {
return time_of_last_flip_;
@@ -178,10 +197,15 @@ class GFX_EXPORT HardwareDisplayController {
State state_;
- scoped_ptr<DriSurface> surface_;
+ scoped_ptr<ScanoutSurface> surface_;
uint64_t time_of_last_flip_;
+ gfx::Rect overlay_plane_rect_;
+ gfx::Size overlay_plane_size_;
+ unsigned overlay_plane_fb_id_;
+ int overlay_plane_;
+
DISALLOW_COPY_AND_ASSIGN(HardwareDisplayController);
};
« no previous file with comments | « ui/gfx/ozone/dri/gbm_surface_factory.cc ('k') | ui/gfx/ozone/dri/hardware_display_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698