Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_SF_HWCOMPOSER_H |
| 18 | #define ANDROID_SF_HWCOMPOSER_H |
| 19 | |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 20 | #include <cstdint> |
Dominik Laskowski | 5690bde | 2020-04-23 19:04:22 -0700 | [diff] [blame] | 21 | #include <future> |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 22 | #include <memory> |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 23 | #include <mutex> |
Steven Thomas | 6e8f706 | 2017-11-22 14:15:29 -0800 | [diff] [blame] | 24 | #include <optional> |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 25 | #include <unordered_map> |
| 26 | #include <unordered_set> |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 27 | #include <vector> |
| 28 | |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 29 | #include <android-base/thread_annotations.h> |
| 30 | #include <ui/Fence.h> |
Ady Abraham | 8a82ba6 | 2020-01-17 12:43:17 -0800 | [diff] [blame] | 31 | |
| 32 | // TODO(b/129481165): remove the #pragma below and fix conversion issues |
| 33 | #pragma clang diagnostic push |
| 34 | #pragma clang diagnostic ignored "-Wconversion" |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 35 | #include <ui/GraphicTypes.h> |
Ady Abraham | 8a82ba6 | 2020-01-17 12:43:17 -0800 | [diff] [blame] | 36 | #pragma clang diagnostic pop |
| 37 | |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 38 | #include <utils/StrongPointer.h> |
| 39 | #include <utils/Timers.h> |
| 40 | |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 41 | #include "DisplayIdentification.h" |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 42 | #include "HWC2.h" |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 43 | #include "Hal.h" |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 44 | |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 45 | namespace android { |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 46 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 47 | namespace hal = hardware::graphics::composer::hal; |
| 48 | |
Kevin DuBois | 1d4249a | 2018-08-29 10:45:14 -0700 | [diff] [blame] | 49 | struct DisplayedFrameStats; |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 50 | class GraphicBuffer; |
Lloyd Pique | e39cad2 | 2017-12-20 17:01:29 -0800 | [diff] [blame] | 51 | class TestableSurfaceFlinger; |
David Sodman | fb95bcc | 2017-12-22 15:45:30 -0800 | [diff] [blame] | 52 | struct CompositionInfo; |
Mathias Agopian | 8372785 | 2010-09-23 18:13:21 -0700 | [diff] [blame] | 53 | |
Lloyd Pique | a822d52 | 2017-12-20 16:42:57 -0800 | [diff] [blame] | 54 | namespace Hwc2 { |
| 55 | class Composer; |
| 56 | } // namespace Hwc2 |
| 57 | |
Lloyd Pique | 37c2c9b | 2018-12-04 17:25:10 -0800 | [diff] [blame] | 58 | namespace compositionengine { |
| 59 | class Output; |
| 60 | } // namespace compositionengine |
| 61 | |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 62 | struct KnownHWCGenericLayerMetadata { |
| 63 | const char* name; |
| 64 | const uint32_t id; |
| 65 | }; |
| 66 | |
Marin Shalamanov | 1c43429 | 2020-06-12 01:47:29 +0200 | [diff] [blame] | 67 | // See the comment for SurfaceFlinger::getHwComposer for the thread safety rules for accessing |
| 68 | // this class. |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 69 | class HWComposer { |
| 70 | public: |
Peiyong Lin | dfc3f7c | 2020-05-07 20:15:50 -0700 | [diff] [blame] | 71 | struct DeviceRequestedChanges { |
| 72 | using ChangedTypes = std::unordered_map<HWC2::Layer*, hal::Composition>; |
| 73 | using ClientTargetProperty = hal::ClientTargetProperty; |
| 74 | using DisplayRequests = hal::DisplayRequest; |
| 75 | using LayerRequests = std::unordered_map<HWC2::Layer*, hal::LayerRequest>; |
| 76 | |
| 77 | ChangedTypes changedTypes; |
| 78 | DisplayRequests displayRequests; |
| 79 | LayerRequests layerRequests; |
| 80 | ClientTargetProperty clientTargetProperty; |
| 81 | }; |
| 82 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 83 | virtual ~HWComposer(); |
| 84 | |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 85 | virtual void setConfiguration(HWC2::ComposerCallback* callback, int32_t sequenceId) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 86 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 87 | virtual bool getDisplayIdentificationData(hal::HWDisplayId, uint8_t* outPort, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 88 | DisplayIdentificationData* outData) const = 0; |
| 89 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 90 | virtual bool hasCapability(hal::Capability) const = 0; |
| 91 | virtual bool hasDisplayCapability(DisplayId, hal::DisplayCapability) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 92 | |
| 93 | // Attempts to allocate a virtual display and returns its ID if created on the HWC device. |
| 94 | virtual std::optional<DisplayId> allocateVirtualDisplay(uint32_t width, uint32_t height, |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 95 | ui::PixelFormat*) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 96 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 97 | virtual void allocatePhysicalDisplay(hal::HWDisplayId, PhysicalDisplayId) = 0; |
Marin Shalamanov | bdd5915 | 2020-02-14 15:30:06 +0100 | [diff] [blame] | 98 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 99 | // Attempts to create a new layer on this display |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 100 | virtual HWC2::Layer* createLayer(DisplayId) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 101 | // Destroy a previously created layer |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 102 | virtual void destroyLayer(DisplayId, HWC2::Layer*) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 103 | |
Lloyd Pique | 66d6860 | 2019-02-13 14:23:31 -0800 | [diff] [blame] | 104 | // Gets any required composition change requests from the HWC device. |
| 105 | // |
| 106 | // Note that frameUsesClientComposition must be set correctly based on |
| 107 | // whether the current frame appears to use client composition. If it is |
| 108 | // false some internal optimizations are allowed to present the display |
| 109 | // with fewer handshakes, but this does not work if client composition is |
| 110 | // expected. |
| 111 | virtual status_t getDeviceCompositionChanges( |
| 112 | DisplayId, bool frameUsesClientComposition, |
| 113 | std::optional<DeviceRequestedChanges>* outChanges) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 114 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 115 | virtual status_t setClientTarget(DisplayId, uint32_t slot, const sp<Fence>& acquireFence, |
| 116 | const sp<GraphicBuffer>& target, ui::Dataspace) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 117 | |
| 118 | // Present layers to the display and read releaseFences. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 119 | virtual status_t presentAndGetReleaseFences(DisplayId) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 120 | |
| 121 | // set power mode |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 122 | virtual status_t setPowerMode(DisplayId, hal::PowerMode) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 123 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 124 | // Sets a color transform to be applied to the result of composition |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 125 | virtual status_t setColorTransform(DisplayId, const mat4& transform) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 126 | |
| 127 | // reset state when an external, non-virtual display is disconnected |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 128 | virtual void disconnectDisplay(DisplayId) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 129 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 130 | // get the present fence received from the last call to present. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 131 | virtual sp<Fence> getPresentFence(DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 132 | |
| 133 | // Get last release fence for the given layer |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 134 | virtual sp<Fence> getLayerReleaseFence(DisplayId, HWC2::Layer*) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 135 | |
| 136 | // Set the output buffer and acquire fence for a virtual display. |
| 137 | // Returns INVALID_OPERATION if displayId is not a virtual display. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 138 | virtual status_t setOutputBuffer(DisplayId, const sp<Fence>& acquireFence, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 139 | const sp<GraphicBuffer>& buffer) = 0; |
| 140 | |
| 141 | // After SurfaceFlinger has retrieved the release fences for all the frames, |
| 142 | // it can call this to clear the shared pointers in the release fence map |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 143 | virtual void clearReleaseFences(DisplayId) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 144 | |
| 145 | // Fetches the HDR capabilities of the given display |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 146 | virtual status_t getHdrCapabilities(DisplayId, HdrCapabilities* outCapabilities) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 147 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 148 | virtual int32_t getSupportedPerFrameMetadata(DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 149 | |
| 150 | // Returns the available RenderIntent of the given display. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 151 | virtual std::vector<ui::RenderIntent> getRenderIntents(DisplayId, ui::ColorMode) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 152 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 153 | virtual mat4 getDataspaceSaturationMatrix(DisplayId, ui::Dataspace) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 154 | |
| 155 | // Returns the attributes of the color sampling engine. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 156 | virtual status_t getDisplayedContentSamplingAttributes(DisplayId, ui::PixelFormat* outFormat, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 157 | ui::Dataspace* outDataspace, |
| 158 | uint8_t* outComponentMask) = 0; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 159 | virtual status_t setDisplayContentSamplingEnabled(DisplayId, bool enabled, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 160 | uint8_t componentMask, |
| 161 | uint64_t maxFrames) = 0; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 162 | virtual status_t getDisplayedContentSample(DisplayId, uint64_t maxFrames, uint64_t timestamp, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 163 | DisplayedFrameStats* outStats) = 0; |
| 164 | |
Dan Gittik | 57e63c5 | 2019-01-18 16:37:54 +0000 | [diff] [blame] | 165 | // Sets the brightness of a display. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 166 | virtual std::future<status_t> setDisplayBrightness(DisplayId, float brightness) = 0; |
Dan Gittik | 57e63c5 | 2019-01-18 16:37:54 +0000 | [diff] [blame] | 167 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 168 | // Events handling --------------------------------------------------------- |
| 169 | |
| 170 | // Returns stable display ID (and display name on connection of new or previously disconnected |
| 171 | // display), or std::nullopt if hotplug event was ignored. |
Marin Shalamanov | bdd5915 | 2020-02-14 15:30:06 +0100 | [diff] [blame] | 172 | // This function is called from SurfaceFlinger. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 173 | virtual std::optional<DisplayIdentificationInfo> onHotplug(hal::HWDisplayId, |
| 174 | hal::Connection) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 175 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 176 | virtual bool onVsync(hal::HWDisplayId, int64_t timestamp) = 0; |
| 177 | virtual void setVsyncEnabled(DisplayId, hal::Vsync enabled) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 178 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 179 | virtual nsecs_t getRefreshTimestamp(DisplayId) const = 0; |
| 180 | virtual bool isConnected(DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 181 | |
| 182 | // Non-const because it can update configMap inside of mDisplayData |
| 183 | virtual std::vector<std::shared_ptr<const HWC2::Display::Config>> getConfigs( |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 184 | DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 185 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 186 | virtual std::shared_ptr<const HWC2::Display::Config> getActiveConfig(DisplayId) const = 0; |
| 187 | virtual int getActiveConfigIndex(DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 188 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 189 | virtual std::vector<ui::ColorMode> getColorModes(DisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 190 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 191 | virtual status_t setActiveColorMode(DisplayId, ui::ColorMode mode, ui::RenderIntent) = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 192 | |
| 193 | virtual bool isUsingVrComposer() const = 0; |
| 194 | |
Ady Abraham | 3a77a7b | 2019-12-02 18:46:59 -0800 | [diff] [blame] | 195 | // Composer 2.4 |
Dominik Laskowski | 55c8540 | 2020-01-21 16:25:47 -0800 | [diff] [blame] | 196 | virtual DisplayConnectionType getDisplayConnectionType(DisplayId) const = 0; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 197 | virtual bool isVsyncPeriodSwitchSupported(DisplayId) const = 0; |
| 198 | virtual nsecs_t getDisplayVsyncPeriod(DisplayId) const = 0; |
Ady Abraham | 3a77a7b | 2019-12-02 18:46:59 -0800 | [diff] [blame] | 199 | virtual status_t setActiveConfigWithConstraints( |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 200 | DisplayId, size_t configId, const hal::VsyncPeriodChangeConstraints&, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 201 | hal::VsyncPeriodChangeTimeline* outTimeline) = 0; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 202 | virtual status_t setAutoLowLatencyMode(DisplayId, bool on) = 0; |
Galia Peycheva | 5492cb5 | 2019-10-30 14:13:16 +0100 | [diff] [blame] | 203 | virtual status_t getSupportedContentTypes( |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 204 | DisplayId, std::vector<hal::ContentType>* outSupportedContentTypes) = 0; |
| 205 | virtual status_t setContentType(DisplayId, hal::ContentType) = 0; |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 206 | virtual const std::unordered_map<std::string, bool>& getSupportedLayerGenericMetadata() |
| 207 | const = 0; |
Ady Abraham | 3a77a7b | 2019-12-02 18:46:59 -0800 | [diff] [blame] | 208 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 209 | // for debugging ---------------------------------------------------------- |
| 210 | virtual void dump(std::string& out) const = 0; |
| 211 | |
| 212 | virtual Hwc2::Composer* getComposer() const = 0; |
| 213 | |
| 214 | // TODO(b/74619554): Remove special cases for internal/external display. |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 215 | virtual std::optional<hal::HWDisplayId> getInternalHwcDisplayId() const = 0; |
| 216 | virtual std::optional<hal::HWDisplayId> getExternalHwcDisplayId() const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 217 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 218 | virtual std::optional<PhysicalDisplayId> toPhysicalDisplayId(hal::HWDisplayId) const = 0; |
| 219 | virtual std::optional<hal::HWDisplayId> fromPhysicalDisplayId(PhysicalDisplayId) const = 0; |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 220 | }; |
| 221 | |
| 222 | namespace impl { |
| 223 | |
| 224 | class HWComposer final : public android::HWComposer { |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 225 | public: |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 226 | explicit HWComposer(std::unique_ptr<Hwc2::Composer> composer); |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 227 | explicit HWComposer(const std::string& composerServiceName); |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 228 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 229 | ~HWComposer() override; |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 230 | |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 231 | void setConfiguration(HWC2::ComposerCallback* callback, int32_t sequenceId) override; |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 232 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 233 | bool getDisplayIdentificationData(hal::HWDisplayId, uint8_t* outPort, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 234 | DisplayIdentificationData* outData) const override; |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 235 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 236 | bool hasCapability(hal::Capability) const override; |
| 237 | bool hasDisplayCapability(DisplayId, hal::DisplayCapability) const override; |
Dan Stoza | 9f26a9c | 2016-06-22 14:51:09 -0700 | [diff] [blame] | 238 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 239 | // Attempts to allocate a virtual display and returns its ID if created on the HWC device. |
| 240 | std::optional<DisplayId> allocateVirtualDisplay(uint32_t width, uint32_t height, |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 241 | ui::PixelFormat*) override; |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 242 | |
Marin Shalamanov | bdd5915 | 2020-02-14 15:30:06 +0100 | [diff] [blame] | 243 | // Called from SurfaceFlinger, when the state for a new physical display needs to be recreated. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 244 | void allocatePhysicalDisplay(hal::HWDisplayId, PhysicalDisplayId) override; |
Marin Shalamanov | bdd5915 | 2020-02-14 15:30:06 +0100 | [diff] [blame] | 245 | |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 246 | // Attempts to create a new layer on this display |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 247 | HWC2::Layer* createLayer(DisplayId) override; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 248 | // Destroy a previously created layer |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 249 | void destroyLayer(DisplayId, HWC2::Layer*) override; |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 250 | |
Lloyd Pique | 66d6860 | 2019-02-13 14:23:31 -0800 | [diff] [blame] | 251 | status_t getDeviceCompositionChanges( |
| 252 | DisplayId, bool frameUsesClientComposition, |
| 253 | std::optional<DeviceRequestedChanges>* outChanges) override; |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 254 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 255 | status_t setClientTarget(DisplayId, uint32_t slot, const sp<Fence>& acquireFence, |
| 256 | const sp<GraphicBuffer>& target, ui::Dataspace) override; |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 257 | |
Fabien Sanglard | a87aa7b | 2016-11-30 16:27:22 -0800 | [diff] [blame] | 258 | // Present layers to the display and read releaseFences. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 259 | status_t presentAndGetReleaseFences(DisplayId) override; |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 260 | |
Prashant Malani | 2c9b11f | 2014-05-25 01:36:31 -0700 | [diff] [blame] | 261 | // set power mode |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 262 | status_t setPowerMode(DisplayId, hal::PowerMode mode) override; |
Colin Cross | 10fbdb6 | 2012-07-12 17:56:34 -0700 | [diff] [blame] | 263 | |
Dan Stoza | 9f26a9c | 2016-06-22 14:51:09 -0700 | [diff] [blame] | 264 | // Sets a color transform to be applied to the result of composition |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 265 | status_t setColorTransform(DisplayId, const mat4& transform) override; |
Dan Stoza | 9f26a9c | 2016-06-22 14:51:09 -0700 | [diff] [blame] | 266 | |
Andy McFadden | 27ec573 | 2012-10-02 19:04:45 -0700 | [diff] [blame] | 267 | // reset state when an external, non-virtual display is disconnected |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 268 | void disconnectDisplay(DisplayId) override; |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 269 | |
Fabien Sanglard | 11d0fc3 | 2016-12-01 15:43:01 -0800 | [diff] [blame] | 270 | // get the present fence received from the last call to present. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 271 | sp<Fence> getPresentFence(DisplayId) const override; |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 272 | |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 273 | // Get last release fence for the given layer |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 274 | sp<Fence> getLayerReleaseFence(DisplayId, HWC2::Layer*) const override; |
Andy McFadden | b0d1dd3 | 2012-09-10 14:08:09 -0700 | [diff] [blame] | 275 | |
Jesse Hall | 851cfe8 | 2013-03-20 13:44:00 -0700 | [diff] [blame] | 276 | // Set the output buffer and acquire fence for a virtual display. |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 277 | // Returns INVALID_OPERATION if displayId is not a virtual display. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 278 | status_t setOutputBuffer(DisplayId, const sp<Fence>& acquireFence, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 279 | const sp<GraphicBuffer>& buffer) override; |
Jesse Hall | 851cfe8 | 2013-03-20 13:44:00 -0700 | [diff] [blame] | 280 | |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 281 | // After SurfaceFlinger has retrieved the release fences for all the frames, |
| 282 | // it can call this to clear the shared pointers in the release fence map |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 283 | void clearReleaseFences(DisplayId) override; |
Mathias Agopian | 3e8b853 | 2012-05-13 20:42:01 -0700 | [diff] [blame] | 284 | |
Peiyong Lin | 6266589 | 2018-04-16 11:07:44 -0700 | [diff] [blame] | 285 | // Fetches the HDR capabilities of the given display |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 286 | status_t getHdrCapabilities(DisplayId, HdrCapabilities* outCapabilities) override; |
Dan Stoza | c4f471e | 2016-03-24 09:31:08 -0700 | [diff] [blame] | 287 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 288 | int32_t getSupportedPerFrameMetadata(DisplayId) const override; |
Peiyong Lin | 0ac5f4e | 2018-04-19 22:06:34 -0700 | [diff] [blame] | 289 | |
Peiyong Lin | 0e7a791 | 2018-04-05 14:36:36 -0700 | [diff] [blame] | 290 | // Returns the available RenderIntent of the given display. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 291 | std::vector<ui::RenderIntent> getRenderIntents(DisplayId, ui::ColorMode) const override; |
Peiyong Lin | 0e7a791 | 2018-04-05 14:36:36 -0700 | [diff] [blame] | 292 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 293 | mat4 getDataspaceSaturationMatrix(DisplayId, ui::Dataspace) override; |
Peiyong Lin | 0e7a791 | 2018-04-05 14:36:36 -0700 | [diff] [blame] | 294 | |
Kevin DuBois | 9c0a176 | 2018-10-16 13:32:31 -0700 | [diff] [blame] | 295 | // Returns the attributes of the color sampling engine. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 296 | status_t getDisplayedContentSamplingAttributes(DisplayId, ui::PixelFormat* outFormat, |
Kevin DuBois | 9c0a176 | 2018-10-16 13:32:31 -0700 | [diff] [blame] | 297 | ui::Dataspace* outDataspace, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 298 | uint8_t* outComponentMask) override; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 299 | status_t setDisplayContentSamplingEnabled(DisplayId, bool enabled, uint8_t componentMask, |
| 300 | uint64_t maxFrames) override; |
| 301 | status_t getDisplayedContentSample(DisplayId, uint64_t maxFrames, uint64_t timestamp, |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 302 | DisplayedFrameStats* outStats) override; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 303 | std::future<status_t> setDisplayBrightness(DisplayId, float brightness) override; |
Kevin DuBois | 9c0a176 | 2018-10-16 13:32:31 -0700 | [diff] [blame] | 304 | |
Mathias Agopian | 3eb38cb | 2012-04-03 22:09:52 -0700 | [diff] [blame] | 305 | // Events handling --------------------------------------------------------- |
| 306 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 307 | // Returns stable display ID (and display name on connection of new or previously disconnected |
| 308 | // display), or std::nullopt if hotplug event was ignored. |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 309 | std::optional<DisplayIdentificationInfo> onHotplug(hal::HWDisplayId, hal::Connection) override; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 310 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 311 | bool onVsync(hal::HWDisplayId, int64_t timestamp) override; |
| 312 | void setVsyncEnabled(DisplayId, hal::Vsync enabled) override; |
Mathias Agopian | 3eb38cb | 2012-04-03 22:09:52 -0700 | [diff] [blame] | 313 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 314 | nsecs_t getRefreshTimestamp(DisplayId) const override; |
| 315 | bool isConnected(DisplayId) const override; |
Dan Stoza | 7f7da32 | 2014-05-02 15:26:25 -0700 | [diff] [blame] | 316 | |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 317 | // Non-const because it can update configMap inside of mDisplayData |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 318 | std::vector<std::shared_ptr<const HWC2::Display::Config>> getConfigs(DisplayId) const override; |
Dan Stoza | 7f7da32 | 2014-05-02 15:26:25 -0700 | [diff] [blame] | 319 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 320 | std::shared_ptr<const HWC2::Display::Config> getActiveConfig(DisplayId) const override; |
| 321 | int getActiveConfigIndex(DisplayId) const override; |
Mathias Agopian | 3eb38cb | 2012-04-03 22:09:52 -0700 | [diff] [blame] | 322 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 323 | std::vector<ui::ColorMode> getColorModes(DisplayId) const override; |
Michael Wright | 28f24d0 | 2016-07-12 13:30:53 -0700 | [diff] [blame] | 324 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 325 | status_t setActiveColorMode(DisplayId, ui::ColorMode, ui::RenderIntent) override; |
Courtney Goeltzenleuchter | fad9d8c | 2016-06-23 11:49:50 -0600 | [diff] [blame] | 326 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 327 | bool isUsingVrComposer() const override; |
Hendrik Wagenaar | 87670ff | 2017-02-01 12:10:46 -0800 | [diff] [blame] | 328 | |
Ady Abraham | 3a77a7b | 2019-12-02 18:46:59 -0800 | [diff] [blame] | 329 | // Composer 2.4 |
Dominik Laskowski | 55c8540 | 2020-01-21 16:25:47 -0800 | [diff] [blame] | 330 | DisplayConnectionType getDisplayConnectionType(DisplayId) const override; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 331 | bool isVsyncPeriodSwitchSupported(DisplayId) const override; |
| 332 | nsecs_t getDisplayVsyncPeriod(DisplayId) const override; |
| 333 | status_t setActiveConfigWithConstraints(DisplayId, size_t configId, |
| 334 | const hal::VsyncPeriodChangeConstraints&, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 335 | hal::VsyncPeriodChangeTimeline* outTimeline) override; |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 336 | status_t setAutoLowLatencyMode(DisplayId, bool) override; |
| 337 | status_t getSupportedContentTypes(DisplayId, std::vector<hal::ContentType>*) override; |
| 338 | status_t setContentType(DisplayId, hal::ContentType) override; |
Ady Abraham | 3a77a7b | 2019-12-02 18:46:59 -0800 | [diff] [blame] | 339 | |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 340 | const std::unordered_map<std::string, bool>& getSupportedLayerGenericMetadata() const override; |
| 341 | |
Mathias Agopian | 3eb38cb | 2012-04-03 22:09:52 -0700 | [diff] [blame] | 342 | // for debugging ---------------------------------------------------------- |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 343 | void dump(std::string& out) const override; |
Mathias Agopian | 8372785 | 2010-09-23 18:13:21 -0700 | [diff] [blame] | 344 | |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 345 | Hwc2::Composer* getComposer() const override { return mComposer.get(); } |
Steven Thomas | 6e8f706 | 2017-11-22 14:15:29 -0800 | [diff] [blame] | 346 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 347 | // TODO(b/74619554): Remove special cases for internal/external display. |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 348 | std::optional<hal::HWDisplayId> getInternalHwcDisplayId() const override { |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 349 | return mInternalHwcDisplayId; |
| 350 | } |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 351 | std::optional<hal::HWDisplayId> getExternalHwcDisplayId() const override { |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 352 | return mExternalHwcDisplayId; |
| 353 | } |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 354 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 355 | std::optional<PhysicalDisplayId> toPhysicalDisplayId(hal::HWDisplayId) const override; |
| 356 | std::optional<hal::HWDisplayId> fromPhysicalDisplayId(PhysicalDisplayId) const override; |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 357 | |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 358 | private: |
Lloyd Pique | e39cad2 | 2017-12-20 17:01:29 -0800 | [diff] [blame] | 359 | // For unit tests |
| 360 | friend TestableSurfaceFlinger; |
| 361 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 362 | std::optional<DisplayIdentificationInfo> onHotplugConnect(hal::HWDisplayId); |
| 363 | std::optional<DisplayIdentificationInfo> onHotplugDisconnect(hal::HWDisplayId); |
| 364 | bool shouldIgnoreHotplugConnect(hal::HWDisplayId, bool hasDisplayIdentificationData) const; |
Marin Shalamanov | bdd5915 | 2020-02-14 15:30:06 +0100 | [diff] [blame] | 365 | |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 366 | void loadCapabilities(); |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 367 | void loadLayerMetadataSupport(); |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 368 | uint32_t getMaxVirtualDisplayCount() const; |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 369 | |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 370 | struct DisplayData { |
Dominik Laskowski | c1f18f6 | 2018-06-13 15:17:55 -0700 | [diff] [blame] | 371 | bool isVirtual = false; |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 372 | std::unique_ptr<HWC2::Display> hwcDisplay; |
Dominik Laskowski | f9750f2 | 2018-06-06 12:24:53 -0700 | [diff] [blame] | 373 | sp<Fence> lastPresentFence = Fence::NO_FENCE; // signals when the last set op retires |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 374 | std::unordered_map<HWC2::Layer*, sp<Fence>> releaseFences; |
Dominik Laskowski | f9750f2 | 2018-06-06 12:24:53 -0700 | [diff] [blame] | 375 | buffer_handle_t outbufHandle = nullptr; |
| 376 | sp<Fence> outbufAcquireFence = Fence::NO_FENCE; |
Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 377 | mutable std::unordered_map<int32_t, |
| 378 | std::shared_ptr<const HWC2::Display::Config>> configMap; |
Jamie Gennis | 2ec3e07 | 2012-11-11 16:24:33 -0800 | [diff] [blame] | 379 | |
Fabien Sanglard | 249c0ae | 2017-06-19 19:22:36 -0700 | [diff] [blame] | 380 | bool validateWasSkipped; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 381 | hal::Error presentError; |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 382 | |
| 383 | bool vsyncTraceToggle = false; |
| 384 | |
| 385 | std::mutex vsyncEnabledLock; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 386 | hal::Vsync vsyncEnabled GUARDED_BY(vsyncEnabledLock) = hal::Vsync::DISABLE; |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 387 | |
| 388 | mutable std::mutex lastHwVsyncLock; |
| 389 | nsecs_t lastHwVsync GUARDED_BY(lastHwVsyncLock) = 0; |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 390 | }; |
| 391 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 392 | std::unordered_map<DisplayId, DisplayData> mDisplayData; |
Dominik Laskowski | b04f98a | 2018-11-07 21:07:16 -0800 | [diff] [blame] | 393 | |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 394 | std::unique_ptr<android::Hwc2::Composer> mComposer; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 395 | std::unordered_set<hal::Capability> mCapabilities; |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 396 | std::unordered_map<std::string, bool> mSupportedLayerGenericMetadata; |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 397 | bool mRegisteredCallback = false; |
Dominik Laskowski | b04f98a | 2018-11-07 21:07:16 -0800 | [diff] [blame] | 398 | |
Marin Shalamanov | a524a09 | 2020-07-27 21:39:55 +0200 | [diff] [blame^] | 399 | std::unordered_map<hal::HWDisplayId, PhysicalDisplayId> mPhysicalDisplayIdMap; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 400 | std::optional<hal::HWDisplayId> mInternalHwcDisplayId; |
| 401 | std::optional<hal::HWDisplayId> mExternalHwcDisplayId; |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 402 | bool mHasMultiDisplaySupport = false; |
| 403 | |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 404 | std::unordered_set<DisplayId> mFreeVirtualDisplayIds; |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 405 | uint32_t mNextVirtualDisplayId = 0; |
Peiyong Lin | bdd08cc | 2019-12-17 21:35:14 -0800 | [diff] [blame] | 406 | uint32_t mRemainingHwcVirtualDisplays{getMaxVirtualDisplayCount()}; |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 407 | }; |
| 408 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 409 | } // namespace impl |
Dominik Laskowski | 1af4793 | 2018-11-12 10:20:46 -0800 | [diff] [blame] | 410 | } // namespace android |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 411 | |
| 412 | #endif // ANDROID_SF_HWCOMPOSER_H |