summaryrefslogtreecommitdiffstats
path: root/minui/graphics_drm.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-08-01 06:32:50 +0200
committerTao Bao <tbao@google.com>2018-08-02 00:36:41 +0200
commited876a7175c54a68735e8bcacd1a22cbc84034ed (patch)
tree62857f4b3ef659dcbf137c6c917e23ee029e3dd6 /minui/graphics_drm.cpp
parentMerge "minui: Clean up the use of `rotation`." (diff)
downloadandroid_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar.gz
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar.bz2
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar.lz
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar.xz
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.tar.zst
android_bootable_recovery-ed876a7175c54a68735e8bcacd1a22cbc84034ed.zip
Diffstat (limited to '')
-rw-r--r--minui/graphics_drm.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/minui/graphics_drm.cpp b/minui/graphics_drm.cpp
index 57912d1e8..9336a1e63 100644
--- a/minui/graphics_drm.cpp
+++ b/minui/graphics_drm.cpp
@@ -116,15 +116,16 @@ GRSurfaceDrm* MinuiBackendDrm::DrmCreateSurface(int width, int height) {
*surface = {};
uint32_t format;
-#if defined(RECOVERY_ABGR)
- format = DRM_FORMAT_RGBA8888;
-#elif defined(RECOVERY_BGRA)
- format = DRM_FORMAT_ARGB8888;
-#elif defined(RECOVERY_RGBX)
- format = DRM_FORMAT_XBGR8888;
-#else
- format = DRM_FORMAT_RGB565;
-#endif
+ PixelFormat pixel_format = gr_pixel_format();
+ if (pixel_format == PixelFormat::ABGR) {
+ format = DRM_FORMAT_ABGR8888;
+ } else if (pixel_format == PixelFormat::BGRA) {
+ format = DRM_FORMAT_BGRA8888;
+ } else if (pixel_format == PixelFormat::RGBX) {
+ format = DRM_FORMAT_RGBX8888;
+ } else {
+ format = DRM_FORMAT_RGB565;
+ }
drm_mode_create_dumb create_dumb = {};
create_dumb.height = height;