summaryrefslogtreecommitdiffstats
path: root/minui/graphics.h
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-27 05:02:03 +0200
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-27 05:02:03 +0200
commitd44ab6e20617b4372d586d7cb48df614bbd618dd (patch)
treebfa552bd67d9c8ea3f9c55e2e680bc2b029faa20 /minui/graphics.h
parentSnap for 8995964 from c59f83be2228a6672debe2a0d62059d702382661 to udc-release (diff)
parent[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: cb5879f9de -s ours am: 377ed97670 -s ours (diff)
downloadandroid_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar.gz
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar.bz2
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar.lz
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar.xz
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.tar.zst
android_bootable_recovery-d44ab6e20617b4372d586d7cb48df614bbd618dd.zip
Diffstat (limited to 'minui/graphics.h')
-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_