summaryrefslogtreecommitdiffstats
path: root/minui/graphics.h
diff options
context:
space:
mode:
authorWeizhung Ding <weizhungding@google.com>2022-07-19 10:34:43 +0200
committerFred Chiou <fredchiou@google.com>2022-08-31 10:36:07 +0200
commite43c5033cb5b82d9e46ee398524a8972dc87b896 (patch)
tree2616683e7cd0fe88bf44f6f1d51ed4eb9b5f1da8 /minui/graphics.h
parent[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 9aebac2722 -s ours am: a4a9ad3e99 -s ours (diff)
downloadandroid_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar.gz
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar.bz2
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar.lz
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar.xz
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.tar.zst
android_bootable_recovery-e43c5033cb5b82d9e46ee398524a8972dc87b896.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_