aboutsummaryrefslogtreecommitdiff
path: root/drmmode.cpp
diff options
context:
space:
mode:
authorSean Paul <seanpaul@chromium.org>2015-06-03 14:08:27 -0400
committerSean Paul <seanpaul@chromium.org>2015-06-15 16:30:48 -0400
commit877be974a2d4fc518700be8ffe803a50cb716ead (patch)
treefd3bb735012580ddaf2edf31ffd31b1083bb6117 /drmmode.cpp
parent1f4ff5aec7bec305558228adb65ba56bd0b9f366 (diff)
downloaddrm_hwcomposer-877be974a2d4fc518700be8ffe803a50cb716ead.tar.gz
drm_hwcomposer: Use atomic modeset to set crtc timing
Use the new drm blob ioctl and atomic modeset properties to do atomic modesetting, as opposed to the old setCrtc call. This allows us to set timing as soon as the system layer requests a new active config, as opposed to delaying it until we have an fb. Aside from reducing complexity, this should help with event control requests as we'll be able to service them with hw vblanks instead of synthesized sleeps. Change-Id: I9c80d44f52f52881a3a25b2ae518973d468bc110 Signed-off-by: Sean Paul <seanpaul@chromium.org>
Diffstat (limited to 'drmmode.cpp')
-rw-r--r--drmmode.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/drmmode.cpp b/drmmode.cpp
index c2def1e..dce9803 100644
--- a/drmmode.cpp
+++ b/drmmode.cpp
@@ -19,7 +19,6 @@
#include <stdint.h>
#include <string>
-
#include <xf86drmMode.h>
namespace android {
@@ -75,7 +74,7 @@ bool DrmMode::operator==(const drmModeModeInfo &m) const {
type_ == m.type;
}
-void DrmMode::ToModeModeInfo(drmModeModeInfo *m) const {
+void DrmMode::ToDrmModeModeInfo(drm_mode_modeinfo *m) const {
m->clock = clock_;
m->hdisplay = h_display_;
m->hsync_start = h_sync_start_;