diff options
author | Fred Chiou <fredchiou@google.com> | 2022-09-07 08:17:08 +0200 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2022-09-07 08:17:08 +0200 |
commit | 3d43ec37f4971779b64c4a48e5275a39c16e7699 (patch) | |
tree | 1565ceed9166ef3da97f68b1d2d478c8e9eac027 /minui/graphics.h | |
parent | [automerger skipped] Merge "Import translations. DO NOT MERGE ANYWHERE" into tm-d1-dev am: 0b490d6b23 -s ours (diff) | |
parent | recovery_ui:Add support for multiple connectors switch (diff) | |
download | android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar.gz android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar.bz2 android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar.lz android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar.xz android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.tar.zst android_bootable_recovery-3d43ec37f4971779b64c4a48e5275a39c16e7699.zip |
Diffstat (limited to 'minui/graphics.h')
-rw-r--r-- | minui/graphics.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/minui/graphics.h b/minui/graphics.h index 5408c93e9..ff063ae23 100644 --- a/minui/graphics.h +++ b/minui/graphics.h @@ -40,8 +40,11 @@ class MinuiBackend { // Blank (or unblank) the specific screen. virtual void Blank(bool blank, DrmConnector index) = 0; + // Return true if the device supports multiple connectors. + virtual bool HasMultipleConnectors() = 0; + // Device cleanup when drawing is done. - virtual ~MinuiBackend() {}; + virtual ~MinuiBackend() = default; }; #endif // _GRAPHICS_H_ |