summaryrefslogtreecommitdiffstats
path: root/minui/graphics.h
diff options
context:
space:
mode:
authorWeizhung Ding <weizhungding@google.com>2022-07-19 10:34:43 +0200
committerWeizhung Ding <weizhungding@google.com>2022-08-18 09:28:49 +0200
commitafd0a1b666fdb6f2140b8527e0bacbe0d802ed6d (patch)
tree536fca272df1e302509b6fb6b1f1a7e14eecc3e6 /minui/graphics.h
parentMerge "DO NOT MERGE - Merge Android 13" (diff)
downloadandroid_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar.gz
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar.bz2
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar.lz
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar.xz
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.tar.zst
android_bootable_recovery-afd0a1b666fdb6f2140b8527e0bacbe0d802ed6d.zip
Diffstat (limited to '')
-rw-r--r--minui/graphics.h5
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_