summaryrefslogtreecommitdiffstats
path: root/minui/graphics_drm.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-06-07 00:22:52 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-06-07 00:22:52 +0200
commit3e9493d8919da85cfd218993306dc0c42c0fd4c1 (patch)
tree8b937b17021b63bea6ec9558f73e025819afd7b1 /minui/graphics_drm.cpp
parentMerge "ui: join only if joinable." am: 2454b2493a (diff)
parentMerge "minui: Handle the failures from the drm backend in gr_init" (diff)
downloadandroid_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar.gz
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar.bz2
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar.lz
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar.xz
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.tar.zst
android_bootable_recovery-3e9493d8919da85cfd218993306dc0c42c0fd4c1.zip
Diffstat (limited to 'minui/graphics_drm.cpp')
-rw-r--r--minui/graphics_drm.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/minui/graphics_drm.cpp b/minui/graphics_drm.cpp
index e7d4b38ef..4c98507f6 100644
--- a/minui/graphics_drm.cpp
+++ b/minui/graphics_drm.cpp
@@ -45,15 +45,17 @@ void MinuiBackendDrm::DrmDisableCrtc(int drm_fd, drmModeCrtc* crtc) {
}
}
-void MinuiBackendDrm::DrmEnableCrtc(int drm_fd, drmModeCrtc* crtc, GRSurfaceDrm* surface) {
- int32_t ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, surface->fb_id, 0, 0, // x,y
- &main_monitor_connector->connector_id,
- 1, // connector_count
- &main_monitor_crtc->mode);
+int MinuiBackendDrm::DrmEnableCrtc(int drm_fd, drmModeCrtc* crtc, GRSurfaceDrm* surface) {
+ int ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, surface->fb_id, 0, 0, // x,y
+ &main_monitor_connector->connector_id,
+ 1, // connector_count
+ &main_monitor_crtc->mode);
if (ret) {
printf("drmModeSetCrtc failed ret=%d\n", ret);
}
+
+ return ret;
}
void MinuiBackendDrm::Blank(bool blank) {
@@ -368,7 +370,10 @@ GRSurface* MinuiBackendDrm::Init() {
current_buffer = 0;
- DrmEnableCrtc(drm_fd, main_monitor_crtc, GRSurfaceDrms[1]);
+ // We will likely encounter errors in the backend functions (i.e. Flip) if EnableCrtc fails.
+ if (DrmEnableCrtc(drm_fd, main_monitor_crtc, GRSurfaceDrms[1]) != 0) {
+ return nullptr;
+ }
return GRSurfaceDrms[0];
}