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

Unified Diff: ui/gfx/ozone/dri/dri_wrapper.cc

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/dri_wrapper.h ('k') | ui/gfx/ozone/dri/gbm_surface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/dri/dri_wrapper.cc
diff --git a/ui/gfx/ozone/dri/dri_wrapper.cc b/ui/gfx/ozone/dri/dri_wrapper.cc
index 2b1104b444d9310ecdc6d283b3eff635b2d186bc..55c8b713e172022544d6fc745059d1f8f9458785 100644
--- a/ui/gfx/ozone/dri/dri_wrapper.cc
+++ b/ui/gfx/ozone/dri/dri_wrapper.cc
@@ -73,14 +73,39 @@ bool DriWrapper::RemoveFramebuffer(uint32_t framebuffer) {
}
bool DriWrapper::PageFlip(uint32_t crtc_id,
- uint32_t framebuffer,
- void* data) {
+ uint32_t framebuffer,
+ gfx::Rect overlay_plane_rect,
+ gfx::Size overlay_plane_size,
+ uint32_t overlay_plane_fb_id,
+ int overlay_plane,
+ void* data) {
CHECK(fd_ >= 0);
- return !drmModePageFlip(fd_,
- crtc_id,
- framebuffer,
- DRM_MODE_PAGE_FLIP_EVENT,
- data);
+
+ drmModePageFlip(fd_, crtc_id, framebuffer, DRM_MODE_PAGE_FLIP_EVENT, data);
+
+ if (overlay_plane_fb_id) {
+ int rc = drmModeSetPlane(fd_,
+ overlay_plane,
+ crtc_id,
+ overlay_plane_fb_id,
+ 0,
+ overlay_plane_rect.x(),
+ overlay_plane_rect.y(),
+ overlay_plane_rect.width(),
+ overlay_plane_rect.height(),
+ 0,
+ 0,
+ overlay_plane_size.width() << 16,
+ overlay_plane_size.height() << 16);
+
+ if (rc) {
+ char buffer[512];
+ sprintf(buffer, "failed to set overlay: %s\n", strerror(-rc));
+ LOG(ERROR) << buffer;
+ }
+ }
+
+ return true;
}
bool DriWrapper::ConnectorSetProperty(uint32_t connector_id,
« no previous file with comments | « ui/gfx/ozone/dri/dri_wrapper.h ('k') | ui/gfx/ozone/dri/gbm_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698