| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright 2013 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 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 17 | // #define LOG_NDEBUG 0 | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 18 | #include "VirtualDisplaySurface.h" | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 19 |  | 
|  | 20 | #include <inttypes.h> | 
|  | 21 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 22 | #include "HWComposer.h" | 
| Fabien Sanglard | a34ed63 | 2017-03-14 11:43:52 -0700 | [diff] [blame] | 23 | #include "SurfaceFlinger.h" | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 24 |  | 
| Dan Stoza | 11611f9 | 2015-03-12 15:12:44 -0700 | [diff] [blame] | 25 | #include <gui/BufferItem.h> | 
| Mathias Agopian | a934764 | 2017-02-13 16:42:28 -0800 | [diff] [blame] | 26 | #include <gui/BufferQueue.h> | 
| Pablo Ceballos | f133d00 | 2015-10-23 12:10:13 -0700 | [diff] [blame] | 27 | #include <gui/IProducerListener.h> | 
| Mathias Agopian | 6a3c05b | 2017-04-27 20:06:55 -0700 | [diff] [blame] | 28 | #include <system/window.h> | 
| Dan Stoza | 11611f9 | 2015-03-12 15:12:44 -0700 | [diff] [blame] | 29 |  | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 30 | // --------------------------------------------------------------------------- | 
|  | 31 | namespace android { | 
|  | 32 | // --------------------------------------------------------------------------- | 
|  | 33 |  | 
| Jesse Hall | 24cd98e | 2014-07-13 14:37:16 -0700 | [diff] [blame] | 34 | #define VDS_LOGE(msg, ...) ALOGE("[%s] " msg, \ | 
| Dominik Laskowski | bf170d9 | 2018-04-19 15:08:05 -0700 | [diff] [blame] | 35 | mDisplayName.c_str(), ##__VA_ARGS__) | 
| Jesse Hall | 24cd98e | 2014-07-13 14:37:16 -0700 | [diff] [blame] | 36 | #define VDS_LOGW_IF(cond, msg, ...) ALOGW_IF(cond, "[%s] " msg, \ | 
| Dominik Laskowski | bf170d9 | 2018-04-19 15:08:05 -0700 | [diff] [blame] | 37 | mDisplayName.c_str(), ##__VA_ARGS__) | 
| Jesse Hall | 24cd98e | 2014-07-13 14:37:16 -0700 | [diff] [blame] | 38 | #define VDS_LOGV(msg, ...) ALOGV("[%s] " msg, \ | 
| Dominik Laskowski | bf170d9 | 2018-04-19 15:08:05 -0700 | [diff] [blame] | 39 | mDisplayName.c_str(), ##__VA_ARGS__) | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 40 |  | 
| Lloyd Pique | 542307f | 2018-10-19 13:24:08 -0700 | [diff] [blame] | 41 | static const char* dbgCompositionTypeStr(compositionengine::DisplaySurface::CompositionType type) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 42 | switch (type) { | 
| Lloyd Pique | 542307f | 2018-10-19 13:24:08 -0700 | [diff] [blame] | 43 | case compositionengine::DisplaySurface::COMPOSITION_UNKNOWN: | 
|  | 44 | return "UNKNOWN"; | 
|  | 45 | case compositionengine::DisplaySurface::COMPOSITION_GLES: | 
|  | 46 | return "GLES"; | 
|  | 47 | case compositionengine::DisplaySurface::COMPOSITION_HWC: | 
|  | 48 | return "HWC"; | 
|  | 49 | case compositionengine::DisplaySurface::COMPOSITION_MIXED: | 
|  | 50 | return "MIXED"; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 51 | default:                                  return "<INVALID>"; | 
|  | 52 | } | 
|  | 53 | } | 
|  | 54 |  | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 55 | VirtualDisplaySurface::VirtualDisplaySurface(HWComposer& hwc, | 
|  | 56 | const std::optional<DisplayId>& displayId, | 
|  | 57 | const sp<IGraphicBufferProducer>& sink, | 
|  | 58 | const sp<IGraphicBufferProducer>& bqProducer, | 
|  | 59 | const sp<IGraphicBufferConsumer>& bqConsumer, | 
|  | 60 | const std::string& name) | 
|  | 61 | : ConsumerBase(bqConsumer), | 
|  | 62 | mHwc(hwc), | 
|  | 63 | mDisplayId(displayId), | 
|  | 64 | mDisplayName(name), | 
|  | 65 | mSource{}, | 
|  | 66 | mDefaultOutputFormat(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED), | 
|  | 67 | mOutputFormat(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED), | 
|  | 68 | mOutputUsage(GRALLOC_USAGE_HW_COMPOSER), | 
|  | 69 | mProducerSlotSource(0), | 
|  | 70 | mProducerBuffers(), | 
|  | 71 | mQueueBufferOutput(), | 
|  | 72 | mSinkBufferWidth(0), | 
|  | 73 | mSinkBufferHeight(0), | 
|  | 74 | mCompositionType(COMPOSITION_UNKNOWN), | 
|  | 75 | mFbFence(Fence::NO_FENCE), | 
|  | 76 | mOutputFence(Fence::NO_FENCE), | 
|  | 77 | mFbProducerSlot(BufferQueue::INVALID_BUFFER_SLOT), | 
|  | 78 | mOutputProducerSlot(BufferQueue::INVALID_BUFFER_SLOT), | 
|  | 79 | mDbgState(DBG_STATE_IDLE), | 
|  | 80 | mDbgLastCompositionType(COMPOSITION_UNKNOWN), | 
|  | 81 | mMustRecompose(false), | 
|  | 82 | mForceHwcCopy(SurfaceFlinger::useHwcForRgbToYuv) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 83 | mSource[SOURCE_SINK] = sink; | 
| Dan Stoza | b9b0883 | 2014-03-13 11:55:57 -0700 | [diff] [blame] | 84 | mSource[SOURCE_SCRATCH] = bqProducer; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 85 |  | 
|  | 86 | resetPerFrameState(); | 
|  | 87 |  | 
|  | 88 | int sinkWidth, sinkHeight; | 
| Jesse Hall | 497ba0e | 2013-11-04 16:43:03 -0800 | [diff] [blame] | 89 | sink->query(NATIVE_WINDOW_WIDTH, &sinkWidth); | 
|  | 90 | sink->query(NATIVE_WINDOW_HEIGHT, &sinkHeight); | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 91 | mSinkBufferWidth = sinkWidth; | 
|  | 92 | mSinkBufferHeight = sinkHeight; | 
| Jesse Hall | 497ba0e | 2013-11-04 16:43:03 -0800 | [diff] [blame] | 93 |  | 
|  | 94 | // Pick the buffer format to request from the sink when not rendering to it | 
|  | 95 | // with GLES. If the consumer needs CPU access, use the default format | 
|  | 96 | // set by the consumer. Otherwise allow gralloc to decide the format based | 
|  | 97 | // on usage bits. | 
|  | 98 | int sinkUsage; | 
|  | 99 | sink->query(NATIVE_WINDOW_CONSUMER_USAGE_BITS, &sinkUsage); | 
|  | 100 | if (sinkUsage & (GRALLOC_USAGE_SW_READ_MASK | GRALLOC_USAGE_SW_WRITE_MASK)) { | 
|  | 101 | int sinkFormat; | 
|  | 102 | sink->query(NATIVE_WINDOW_FORMAT, &sinkFormat); | 
|  | 103 | mDefaultOutputFormat = sinkFormat; | 
|  | 104 | } else { | 
|  | 105 | mDefaultOutputFormat = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED; | 
|  | 106 | } | 
|  | 107 | mOutputFormat = mDefaultOutputFormat; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 108 |  | 
| Dominik Laskowski | bf170d9 | 2018-04-19 15:08:05 -0700 | [diff] [blame] | 109 | ConsumerBase::mName = String8::format("VDS: %s", mDisplayName.c_str()); | 
| Mathias Agopian | db89edc | 2013-08-02 01:40:18 -0700 | [diff] [blame] | 110 | mConsumer->setConsumerName(ConsumerBase::mName); | 
|  | 111 | mConsumer->setConsumerUsageBits(GRALLOC_USAGE_HW_COMPOSER); | 
|  | 112 | mConsumer->setDefaultBufferSize(sinkWidth, sinkHeight); | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 113 | sink->setAsyncMode(true); | 
| Alec Mouri | 8d4f90a | 2018-11-14 22:33:24 +0000 | [diff] [blame] | 114 | IGraphicBufferProducer::QueueBufferOutput output; | 
|  | 115 | mSource[SOURCE_SCRATCH]->connect(nullptr, NATIVE_WINDOW_API_EGL, false, &output); | 
| Jesse Hall | ffe1f19 | 2013-03-22 15:13:48 -0700 | [diff] [blame] | 116 | } | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 117 |  | 
|  | 118 | VirtualDisplaySurface::~VirtualDisplaySurface() { | 
| Pablo Ceballos | f133d00 | 2015-10-23 12:10:13 -0700 | [diff] [blame] | 119 | mSource[SOURCE_SCRATCH]->disconnect(NATIVE_WINDOW_API_EGL); | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 122 | status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 123 | if (!mDisplayId) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 124 | return NO_ERROR; | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 125 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 126 |  | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 127 | mMustRecompose = mustRecompose; | 
|  | 128 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 129 | VDS_LOGW_IF(mDbgState != DBG_STATE_IDLE, | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 130 | "Unexpected beginFrame() in %s state", dbgStateStr()); | 
|  | 131 | mDbgState = DBG_STATE_BEGUN; | 
|  | 132 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 133 | return refreshOutputBuffer(); | 
|  | 134 | } | 
|  | 135 |  | 
|  | 136 | status_t VirtualDisplaySurface::prepareFrame(CompositionType compositionType) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 137 | if (!mDisplayId) { | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 138 | return NO_ERROR; | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 139 | } | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 140 |  | 
|  | 141 | VDS_LOGW_IF(mDbgState != DBG_STATE_BEGUN, | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 142 | "Unexpected prepareFrame() in %s state", dbgStateStr()); | 
|  | 143 | mDbgState = DBG_STATE_PREPARED; | 
|  | 144 |  | 
|  | 145 | mCompositionType = compositionType; | 
| Fabien Sanglard | a34ed63 | 2017-03-14 11:43:52 -0700 | [diff] [blame] | 146 | if (mForceHwcCopy && mCompositionType == COMPOSITION_GLES) { | 
| Naseer Ahmed | 6a96846 | 2013-10-04 16:15:22 -0400 | [diff] [blame] | 147 | // Some hardware can do RGB->YUV conversion more efficiently in hardware | 
|  | 148 | // controlled by HWC than in hardware controlled by the video encoder. | 
|  | 149 | // Forcing GLES-composed frames to go through an extra copy by the HWC | 
|  | 150 | // allows the format conversion to happen there, rather than passing RGB | 
|  | 151 | // directly to the consumer. | 
|  | 152 | // | 
|  | 153 | // On the other hand, when the consumer prefers RGB or can consume RGB | 
|  | 154 | // inexpensively, this forces an unnecessary copy. | 
|  | 155 | mCompositionType = COMPOSITION_MIXED; | 
|  | 156 | } | 
|  | 157 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 158 | if (mCompositionType != mDbgLastCompositionType) { | 
|  | 159 | VDS_LOGV("prepareFrame: composition type changed to %s", | 
|  | 160 | dbgCompositionTypeStr(mCompositionType)); | 
|  | 161 | mDbgLastCompositionType = mCompositionType; | 
|  | 162 | } | 
|  | 163 |  | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 164 | if (mCompositionType != COMPOSITION_GLES && | 
| Jesse Hall | 497ba0e | 2013-11-04 16:43:03 -0800 | [diff] [blame] | 165 | (mOutputFormat != mDefaultOutputFormat || | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 166 | mOutputUsage != GRALLOC_USAGE_HW_COMPOSER)) { | 
|  | 167 | // We must have just switched from GLES-only to MIXED or HWC | 
|  | 168 | // composition. Stop using the format and usage requested by the GLES | 
|  | 169 | // driver; they may be suboptimal when HWC is writing to the output | 
|  | 170 | // buffer. For example, if the output is going to a video encoder, and | 
|  | 171 | // HWC can write directly to YUV, some hardware can skip a | 
|  | 172 | // memory-to-memory RGB-to-YUV conversion step. | 
|  | 173 | // | 
|  | 174 | // If we just switched *to* GLES-only mode, we'll change the | 
|  | 175 | // format/usage and get a new buffer when the GLES driver calls | 
|  | 176 | // dequeueBuffer(). | 
| Jesse Hall | 497ba0e | 2013-11-04 16:43:03 -0800 | [diff] [blame] | 177 | mOutputFormat = mDefaultOutputFormat; | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 178 | mOutputUsage = GRALLOC_USAGE_HW_COMPOSER; | 
|  | 179 | refreshOutputBuffer(); | 
|  | 180 | } | 
|  | 181 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 182 | return NO_ERROR; | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 183 | } | 
|  | 184 |  | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 185 | status_t VirtualDisplaySurface::advanceFrame() { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 186 | if (!mDisplayId) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 187 | return NO_ERROR; | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 188 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 189 |  | 
|  | 190 | if (mCompositionType == COMPOSITION_HWC) { | 
|  | 191 | VDS_LOGW_IF(mDbgState != DBG_STATE_PREPARED, | 
|  | 192 | "Unexpected advanceFrame() in %s state on HWC frame", | 
|  | 193 | dbgStateStr()); | 
|  | 194 | } else { | 
|  | 195 | VDS_LOGW_IF(mDbgState != DBG_STATE_GLES_DONE, | 
|  | 196 | "Unexpected advanceFrame() in %s state on GLES/MIXED frame", | 
|  | 197 | dbgStateStr()); | 
|  | 198 | } | 
|  | 199 | mDbgState = DBG_STATE_HWC; | 
|  | 200 |  | 
| Jesse Hall | 14e8b01 | 2013-11-07 12:28:26 -0800 | [diff] [blame] | 201 | if (mOutputProducerSlot < 0 || | 
|  | 202 | (mCompositionType != COMPOSITION_HWC && mFbProducerSlot < 0)) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 203 | // Last chance bailout if something bad happened earlier. For example, | 
|  | 204 | // in a GLES configuration, if the sink disappears then dequeueBuffer | 
|  | 205 | // will fail, the GLES driver won't queue a buffer, but SurfaceFlinger | 
|  | 206 | // will soldier on. So we end up here without a buffer. There should | 
|  | 207 | // be lots of scary messages in the log just before this. | 
|  | 208 | VDS_LOGE("advanceFrame: no buffer, bailing out"); | 
|  | 209 | return NO_MEMORY; | 
|  | 210 | } | 
|  | 211 |  | 
| Jesse Hall | 14e8b01 | 2013-11-07 12:28:26 -0800 | [diff] [blame] | 212 | sp<GraphicBuffer> fbBuffer = mFbProducerSlot >= 0 ? | 
| Peiyong Lin | 566a3b4 | 2018-01-09 18:22:43 -0800 | [diff] [blame] | 213 | mProducerBuffers[mFbProducerSlot] : sp<GraphicBuffer>(nullptr); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 214 | sp<GraphicBuffer> outBuffer = mProducerBuffers[mOutputProducerSlot]; | 
|  | 215 | VDS_LOGV("advanceFrame: fb=%d(%p) out=%d(%p)", | 
|  | 216 | mFbProducerSlot, fbBuffer.get(), | 
|  | 217 | mOutputProducerSlot, outBuffer.get()); | 
|  | 218 |  | 
| Jesse Hall | b716e57 | 2013-10-01 17:25:20 -0700 | [diff] [blame] | 219 | // At this point we know the output buffer acquire fence, | 
|  | 220 | // so update HWC state with it. | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 221 | mHwc.setOutputBuffer(*mDisplayId, mOutputFence, outBuffer); | 
| Jesse Hall | b716e57 | 2013-10-01 17:25:20 -0700 | [diff] [blame] | 222 |  | 
| Jesse Hall | 14e8b01 | 2013-11-07 12:28:26 -0800 | [diff] [blame] | 223 | status_t result = NO_ERROR; | 
| Peiyong Lin | 566a3b4 | 2018-01-09 18:22:43 -0800 | [diff] [blame] | 224 | if (fbBuffer != nullptr) { | 
| Chia-I Wu | 06d63de | 2017-01-04 14:58:51 +0800 | [diff] [blame] | 225 | uint32_t hwcSlot = 0; | 
|  | 226 | sp<GraphicBuffer> hwcBuffer; | 
| Valerie Hau | 6f89c37 | 2019-03-02 00:13:33 +0000 | [diff] [blame] | 227 | mHwcBufferCache.getHwcBuffer(fbBuffer, &hwcSlot, &hwcBuffer); | 
| Chia-I Wu | 06d63de | 2017-01-04 14:58:51 +0800 | [diff] [blame] | 228 |  | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 229 | // TODO: Correctly propagate the dataspace from GL composition | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 230 | result = mHwc.setClientTarget(*mDisplayId, hwcSlot, mFbFence, hwcBuffer, | 
|  | 231 | ui::Dataspace::UNKNOWN); | 
| Jesse Hall | 14e8b01 | 2013-11-07 12:28:26 -0800 | [diff] [blame] | 232 | } | 
|  | 233 |  | 
|  | 234 | return result; | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 235 | } | 
|  | 236 |  | 
| Jesse Hall | 851cfe8 | 2013-03-20 13:44:00 -0700 | [diff] [blame] | 237 | void VirtualDisplaySurface::onFrameCommitted() { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 238 | if (!mDisplayId) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 239 | return; | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 240 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 241 |  | 
|  | 242 | VDS_LOGW_IF(mDbgState != DBG_STATE_HWC, | 
|  | 243 | "Unexpected onFrameCommitted() in %s state", dbgStateStr()); | 
|  | 244 | mDbgState = DBG_STATE_IDLE; | 
|  | 245 |  | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 246 | sp<Fence> retireFence = mHwc.getPresentFence(*mDisplayId); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 247 | if (mCompositionType == COMPOSITION_MIXED && mFbProducerSlot >= 0) { | 
|  | 248 | // release the scratch buffer back to the pool | 
|  | 249 | Mutex::Autolock lock(mMutex); | 
|  | 250 | int sslot = mapProducer2SourceSlot(SOURCE_SCRATCH, mFbProducerSlot); | 
|  | 251 | VDS_LOGV("onFrameCommitted: release scratch sslot=%d", sslot); | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 252 | addReleaseFenceLocked(sslot, mProducerBuffers[mFbProducerSlot], | 
|  | 253 | retireFence); | 
| Chia-I Wu | 1e24cce | 2017-11-10 10:36:01 -0800 | [diff] [blame] | 254 | releaseBufferLocked(sslot, mProducerBuffers[mFbProducerSlot]); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 255 | } | 
|  | 256 |  | 
|  | 257 | if (mOutputProducerSlot >= 0) { | 
|  | 258 | int sslot = mapProducer2SourceSlot(SOURCE_SINK, mOutputProducerSlot); | 
|  | 259 | QueueBufferOutput qbo; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 260 | VDS_LOGV("onFrameCommitted: queue sink sslot=%d", sslot); | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 261 | if (mMustRecompose) { | 
|  | 262 | status_t result = mSource[SOURCE_SINK]->queueBuffer(sslot, | 
|  | 263 | QueueBufferInput( | 
|  | 264 | systemTime(), false /* isAutoTimestamp */, | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 265 | HAL_DATASPACE_UNKNOWN, | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 266 | Rect(mSinkBufferWidth, mSinkBufferHeight), | 
|  | 267 | NATIVE_WINDOW_SCALING_MODE_FREEZE, 0 /* transform */, | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 268 | retireFence), | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 269 | &qbo); | 
|  | 270 | if (result == NO_ERROR) { | 
| Brian Anderson | 3d4039d | 2016-09-23 16:31:30 -0700 | [diff] [blame] | 271 | updateQueueBufferOutput(std::move(qbo)); | 
| Dan Stoza | 7143316 | 2014-02-04 16:22:36 -0800 | [diff] [blame] | 272 | } | 
|  | 273 | } else { | 
|  | 274 | // If the surface hadn't actually been updated, then we only went | 
|  | 275 | // through the motions of updating the display to keep our state | 
|  | 276 | // machine happy. We cancel the buffer to avoid triggering another | 
|  | 277 | // re-composition and causing an infinite loop. | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 278 | mSource[SOURCE_SINK]->cancelBuffer(sslot, retireFence); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 279 | } | 
|  | 280 | } | 
|  | 281 |  | 
|  | 282 | resetPerFrameState(); | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 283 | } | 
|  | 284 |  | 
| Dan Stoza | 01049c8 | 2014-11-11 10:32:31 -0800 | [diff] [blame] | 285 | void VirtualDisplaySurface::dumpAsString(String8& /* result */) const { | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 286 | } | 
|  | 287 |  | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 288 | void VirtualDisplaySurface::resizeBuffers(const uint32_t w, const uint32_t h) { | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 289 | mQueueBufferOutput.width = w; | 
|  | 290 | mQueueBufferOutput.height = h; | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 291 | mSinkBufferWidth = w; | 
|  | 292 | mSinkBufferHeight = h; | 
|  | 293 | } | 
|  | 294 |  | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 295 | const sp<Fence>& VirtualDisplaySurface::getClientTargetAcquireFence() const { | 
|  | 296 | return mFbFence; | 
|  | 297 | } | 
| Dan Stoza | 9e56aa0 | 2015-11-02 13:00:03 -0800 | [diff] [blame] | 298 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 299 | status_t VirtualDisplaySurface::requestBuffer(int pslot, | 
|  | 300 | sp<GraphicBuffer>* outBuf) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 301 | if (!mDisplayId) { | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 302 | return mSource[SOURCE_SINK]->requestBuffer(pslot, outBuf); | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 303 | } | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 304 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 305 | VDS_LOGW_IF(mDbgState != DBG_STATE_GLES, | 
|  | 306 | "Unexpected requestBuffer pslot=%d in %s state", | 
|  | 307 | pslot, dbgStateStr()); | 
|  | 308 |  | 
|  | 309 | *outBuf = mProducerBuffers[pslot]; | 
|  | 310 | return NO_ERROR; | 
|  | 311 | } | 
|  | 312 |  | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 313 | status_t VirtualDisplaySurface::setMaxDequeuedBufferCount( | 
|  | 314 | int maxDequeuedBuffers) { | 
|  | 315 | return mSource[SOURCE_SINK]->setMaxDequeuedBufferCount(maxDequeuedBuffers); | 
|  | 316 | } | 
|  | 317 |  | 
|  | 318 | status_t VirtualDisplaySurface::setAsyncMode(bool async) { | 
|  | 319 | return mSource[SOURCE_SINK]->setAsyncMode(async); | 
|  | 320 | } | 
|  | 321 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 322 | status_t VirtualDisplaySurface::dequeueBuffer(Source source, | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 323 | PixelFormat format, uint64_t usage, int* sslot, sp<Fence>* fence) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 324 | LOG_FATAL_IF(!mDisplayId); | 
| Jesse Hall | 8db9255 | 2013-08-29 16:03:50 -0700 | [diff] [blame] | 325 |  | 
| Ian Elliott | a2eb34c | 2017-07-18 11:05:49 -0600 | [diff] [blame] | 326 | status_t result = | 
|  | 327 | mSource[source]->dequeueBuffer(sslot, fence, mSinkBufferWidth, mSinkBufferHeight, | 
|  | 328 | format, usage, nullptr, nullptr); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 329 | if (result < 0) | 
|  | 330 | return result; | 
|  | 331 | int pslot = mapSource2ProducerSlot(source, *sslot); | 
|  | 332 | VDS_LOGV("dequeueBuffer(%s): sslot=%d pslot=%d result=%d", | 
|  | 333 | dbgSourceStr(source), *sslot, pslot, result); | 
| Dan Stoza | febd4f4 | 2014-04-09 16:14:51 -0700 | [diff] [blame] | 334 | uint64_t sourceBit = static_cast<uint64_t>(source) << pslot; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 335 |  | 
| Dan Stoza | febd4f4 | 2014-04-09 16:14:51 -0700 | [diff] [blame] | 336 | if ((mProducerSlotSource & (1ULL << pslot)) != sourceBit) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 337 | // This slot was previously dequeued from the other source; must | 
|  | 338 | // re-request the buffer. | 
|  | 339 | result |= BUFFER_NEEDS_REALLOCATION; | 
| Dan Stoza | febd4f4 | 2014-04-09 16:14:51 -0700 | [diff] [blame] | 340 | mProducerSlotSource &= ~(1ULL << pslot); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 341 | mProducerSlotSource |= sourceBit; | 
|  | 342 | } | 
|  | 343 |  | 
|  | 344 | if (result & RELEASE_ALL_BUFFERS) { | 
|  | 345 | for (uint32_t i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) { | 
| Dan Stoza | febd4f4 | 2014-04-09 16:14:51 -0700 | [diff] [blame] | 346 | if ((mProducerSlotSource & (1ULL << i)) == sourceBit) | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 347 | mProducerBuffers[i].clear(); | 
|  | 348 | } | 
|  | 349 | } | 
|  | 350 | if (result & BUFFER_NEEDS_REALLOCATION) { | 
| Jesse Hall | 0b63cd1 | 2014-04-29 16:14:14 -0700 | [diff] [blame] | 351 | result = mSource[source]->requestBuffer(*sslot, &mProducerBuffers[pslot]); | 
|  | 352 | if (result < 0) { | 
|  | 353 | mProducerBuffers[pslot].clear(); | 
|  | 354 | mSource[source]->cancelBuffer(*sslot, *fence); | 
|  | 355 | return result; | 
|  | 356 | } | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 357 | VDS_LOGV("dequeueBuffer(%s): buffers[%d]=%p fmt=%d usage=%#" PRIx64, | 
| Jesse Hall | 497ba0e | 2013-11-04 16:43:03 -0800 | [diff] [blame] | 358 | dbgSourceStr(source), pslot, mProducerBuffers[pslot].get(), | 
|  | 359 | mProducerBuffers[pslot]->getPixelFormat(), | 
|  | 360 | mProducerBuffers[pslot]->getUsage()); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 361 | } | 
|  | 362 |  | 
|  | 363 | return result; | 
|  | 364 | } | 
|  | 365 |  | 
| Ian Elliott | a2eb34c | 2017-07-18 11:05:49 -0600 | [diff] [blame] | 366 | status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, uint32_t w, uint32_t h, | 
|  | 367 | PixelFormat format, uint64_t usage, | 
|  | 368 | uint64_t* outBufferAge, | 
|  | 369 | FrameEventHistoryDelta* outTimestamps) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 370 | if (!mDisplayId) { | 
| Ian Elliott | a2eb34c | 2017-07-18 11:05:49 -0600 | [diff] [blame] | 371 | return mSource[SOURCE_SINK]->dequeueBuffer(pslot, fence, w, h, format, usage, outBufferAge, | 
|  | 372 | outTimestamps); | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 373 | } | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 374 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 375 | VDS_LOGW_IF(mDbgState != DBG_STATE_PREPARED, | 
|  | 376 | "Unexpected dequeueBuffer() in %s state", dbgStateStr()); | 
|  | 377 | mDbgState = DBG_STATE_GLES; | 
|  | 378 |  | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 379 | VDS_LOGV("dequeueBuffer %dx%d fmt=%d usage=%#" PRIx64, w, h, format, usage); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 380 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 381 | status_t result = NO_ERROR; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 382 | Source source = fbSourceForCompositionType(mCompositionType); | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 383 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 384 | if (source == SOURCE_SINK) { | 
| Mathias Agopian | 6da15f4 | 2013-09-25 20:40:07 -0700 | [diff] [blame] | 385 |  | 
|  | 386 | if (mOutputProducerSlot < 0) { | 
|  | 387 | // Last chance bailout if something bad happened earlier. For example, | 
|  | 388 | // in a GLES configuration, if the sink disappears then dequeueBuffer | 
|  | 389 | // will fail, the GLES driver won't queue a buffer, but SurfaceFlinger | 
|  | 390 | // will soldier on. So we end up here without a buffer. There should | 
|  | 391 | // be lots of scary messages in the log just before this. | 
|  | 392 | VDS_LOGE("dequeueBuffer: no buffer, bailing out"); | 
|  | 393 | return NO_MEMORY; | 
|  | 394 | } | 
|  | 395 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 396 | // We already dequeued the output buffer. If the GLES driver wants | 
|  | 397 | // something incompatible, we have to cancel and get a new one. This | 
|  | 398 | // will mean that HWC will see a different output buffer between | 
|  | 399 | // prepare and set, but since we're in GLES-only mode already it | 
|  | 400 | // shouldn't matter. | 
|  | 401 |  | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 402 | usage |= GRALLOC_USAGE_HW_COMPOSER; | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 403 | const sp<GraphicBuffer>& buf = mProducerBuffers[mOutputProducerSlot]; | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 404 | if ((usage & ~buf->getUsage()) != 0 || | 
| Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 405 | (format != 0 && format != buf->getPixelFormat()) || | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 406 | (w != 0 && w != mSinkBufferWidth) || | 
|  | 407 | (h != 0 && h != mSinkBufferHeight)) { | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 408 | VDS_LOGV("dequeueBuffer: dequeueing new output buffer: " | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 409 | "want %dx%d fmt=%d use=%#" PRIx64 ", " | 
|  | 410 | "have %dx%d fmt=%d use=%#" PRIx64, | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 411 | w, h, format, usage, | 
|  | 412 | mSinkBufferWidth, mSinkBufferHeight, | 
|  | 413 | buf->getPixelFormat(), buf->getUsage()); | 
|  | 414 | mOutputFormat = format; | 
|  | 415 | mOutputUsage = usage; | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 416 | result = refreshOutputBuffer(); | 
|  | 417 | if (result < 0) | 
|  | 418 | return result; | 
|  | 419 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 420 | } | 
|  | 421 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 422 | if (source == SOURCE_SINK) { | 
|  | 423 | *pslot = mOutputProducerSlot; | 
|  | 424 | *fence = mOutputFence; | 
|  | 425 | } else { | 
|  | 426 | int sslot; | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 427 | result = dequeueBuffer(source, format, usage, &sslot, fence); | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 428 | if (result >= 0) { | 
|  | 429 | *pslot = mapSource2ProducerSlot(source, sslot); | 
|  | 430 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 431 | } | 
| Ian Elliott | a2eb34c | 2017-07-18 11:05:49 -0600 | [diff] [blame] | 432 | if (outBufferAge) { | 
|  | 433 | *outBufferAge = 0; | 
|  | 434 | } | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 435 | return result; | 
|  | 436 | } | 
|  | 437 |  | 
| Dan Stoza | 88a459a | 2014-03-12 09:34:36 -0700 | [diff] [blame] | 438 | status_t VirtualDisplaySurface::detachBuffer(int /* slot */) { | 
|  | 439 | VDS_LOGE("detachBuffer is not available for VirtualDisplaySurface"); | 
|  | 440 | return INVALID_OPERATION; | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 441 | } | 
|  | 442 |  | 
| Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 443 | status_t VirtualDisplaySurface::detachNextBuffer( | 
|  | 444 | sp<GraphicBuffer>* /* outBuffer */, sp<Fence>* /* outFence */) { | 
|  | 445 | VDS_LOGE("detachNextBuffer is not available for VirtualDisplaySurface"); | 
|  | 446 | return INVALID_OPERATION; | 
|  | 447 | } | 
|  | 448 |  | 
| Dan Stoza | 88a459a | 2014-03-12 09:34:36 -0700 | [diff] [blame] | 449 | status_t VirtualDisplaySurface::attachBuffer(int* /* outSlot */, | 
|  | 450 | const sp<GraphicBuffer>& /* buffer */) { | 
|  | 451 | VDS_LOGE("attachBuffer is not available for VirtualDisplaySurface"); | 
|  | 452 | return INVALID_OPERATION; | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 453 | } | 
|  | 454 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 455 | status_t VirtualDisplaySurface::queueBuffer(int pslot, | 
|  | 456 | const QueueBufferInput& input, QueueBufferOutput* output) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 457 | if (!mDisplayId) { | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 458 | return mSource[SOURCE_SINK]->queueBuffer(pslot, input, output); | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 459 | } | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 460 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 461 | VDS_LOGW_IF(mDbgState != DBG_STATE_GLES, | 
|  | 462 | "Unexpected queueBuffer(pslot=%d) in %s state", pslot, | 
|  | 463 | dbgStateStr()); | 
|  | 464 | mDbgState = DBG_STATE_GLES_DONE; | 
|  | 465 |  | 
|  | 466 | VDS_LOGV("queueBuffer pslot=%d", pslot); | 
|  | 467 |  | 
|  | 468 | status_t result; | 
|  | 469 | if (mCompositionType == COMPOSITION_MIXED) { | 
|  | 470 | // Queue the buffer back into the scratch pool | 
|  | 471 | QueueBufferOutput scratchQBO; | 
|  | 472 | int sslot = mapProducer2SourceSlot(SOURCE_SCRATCH, pslot); | 
| Mathias Agopian | db89edc | 2013-08-02 01:40:18 -0700 | [diff] [blame] | 473 | result = mSource[SOURCE_SCRATCH]->queueBuffer(sslot, input, &scratchQBO); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 474 | if (result != NO_ERROR) | 
|  | 475 | return result; | 
|  | 476 |  | 
|  | 477 | // Now acquire the buffer from the scratch pool -- should be the same | 
|  | 478 | // slot and fence as we just queued. | 
|  | 479 | Mutex::Autolock lock(mMutex); | 
| Dan Stoza | 11611f9 | 2015-03-12 15:12:44 -0700 | [diff] [blame] | 480 | BufferItem item; | 
| Jesse Hall | bce7611 | 2013-07-16 13:46:20 -0700 | [diff] [blame] | 481 | result = acquireBufferLocked(&item, 0); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 482 | if (result != NO_ERROR) | 
|  | 483 | return result; | 
| Pablo Ceballos | 47650f4 | 2015-08-04 16:38:17 -0700 | [diff] [blame] | 484 | VDS_LOGW_IF(item.mSlot != sslot, | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 485 | "queueBuffer: acquired sslot %d from SCRATCH after queueing sslot %d", | 
| Pablo Ceballos | 47650f4 | 2015-08-04 16:38:17 -0700 | [diff] [blame] | 486 | item.mSlot, sslot); | 
|  | 487 | mFbProducerSlot = mapSource2ProducerSlot(SOURCE_SCRATCH, item.mSlot); | 
|  | 488 | mFbFence = mSlots[item.mSlot].mFence; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 489 |  | 
|  | 490 | } else { | 
|  | 491 | LOG_FATAL_IF(mCompositionType != COMPOSITION_GLES, | 
|  | 492 | "Unexpected queueBuffer in state %s for compositionType %s", | 
|  | 493 | dbgStateStr(), dbgCompositionTypeStr(mCompositionType)); | 
|  | 494 |  | 
|  | 495 | // Extract the GLES release fence for HWC to acquire | 
|  | 496 | int64_t timestamp; | 
| Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 497 | bool isAutoTimestamp; | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 498 | android_dataspace dataSpace; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 499 | Rect crop; | 
|  | 500 | int scalingMode; | 
|  | 501 | uint32_t transform; | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 502 | input.deflate(×tamp, &isAutoTimestamp, &dataSpace, &crop, | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 503 | &scalingMode, &transform, &mFbFence); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 504 |  | 
|  | 505 | mFbProducerSlot = pslot; | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 506 | mOutputFence = mFbFence; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 507 | } | 
|  | 508 |  | 
| Brian Anderson | 3d4039d | 2016-09-23 16:31:30 -0700 | [diff] [blame] | 509 | // This moves the frame timestamps and keeps a copy of all other fields. | 
|  | 510 | *output = std::move(mQueueBufferOutput); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 511 | return NO_ERROR; | 
|  | 512 | } | 
|  | 513 |  | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 514 | status_t VirtualDisplaySurface::cancelBuffer(int pslot, | 
|  | 515 | const sp<Fence>& fence) { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 516 | if (!mDisplayId) { | 
| Michael Lentine | fd9d183 | 2014-07-30 15:39:17 -0700 | [diff] [blame] | 517 | return mSource[SOURCE_SINK]->cancelBuffer(mapProducer2SourceSlot(SOURCE_SINK, pslot), fence); | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 518 | } | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 519 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 520 | VDS_LOGW_IF(mDbgState != DBG_STATE_GLES, | 
|  | 521 | "Unexpected cancelBuffer(pslot=%d) in %s state", pslot, | 
|  | 522 | dbgStateStr()); | 
|  | 523 | VDS_LOGV("cancelBuffer pslot=%d", pslot); | 
|  | 524 | Source source = fbSourceForCompositionType(mCompositionType); | 
|  | 525 | return mSource[source]->cancelBuffer( | 
|  | 526 | mapProducer2SourceSlot(source, pslot), fence); | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | int VirtualDisplaySurface::query(int what, int* value) { | 
| Michael Lentine | 47e4540 | 2014-07-18 15:34:25 -0700 | [diff] [blame] | 530 | switch (what) { | 
|  | 531 | case NATIVE_WINDOW_WIDTH: | 
|  | 532 | *value = mSinkBufferWidth; | 
|  | 533 | break; | 
|  | 534 | case NATIVE_WINDOW_HEIGHT: | 
|  | 535 | *value = mSinkBufferHeight; | 
|  | 536 | break; | 
|  | 537 | default: | 
|  | 538 | return mSource[SOURCE_SINK]->query(what, value); | 
|  | 539 | } | 
|  | 540 | return NO_ERROR; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 541 | } | 
|  | 542 |  | 
| Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 543 | status_t VirtualDisplaySurface::connect(const sp<IProducerListener>& listener, | 
| Mathias Agopian | 365857d | 2013-09-11 19:35:45 -0700 | [diff] [blame] | 544 | int api, bool producerControlledByApp, | 
| Mathias Agopian | 595264f | 2013-07-16 22:56:09 -0700 | [diff] [blame] | 545 | QueueBufferOutput* output) { | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 546 | QueueBufferOutput qbo; | 
| Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 547 | status_t result = mSource[SOURCE_SINK]->connect(listener, api, | 
|  | 548 | producerControlledByApp, &qbo); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 549 | if (result == NO_ERROR) { | 
| Brian Anderson | 3d4039d | 2016-09-23 16:31:30 -0700 | [diff] [blame] | 550 | updateQueueBufferOutput(std::move(qbo)); | 
|  | 551 | // This moves the frame timestamps and keeps a copy of all other fields. | 
|  | 552 | *output = std::move(mQueueBufferOutput); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 553 | } | 
|  | 554 | return result; | 
|  | 555 | } | 
|  | 556 |  | 
| Robert Carr | 97b9c86 | 2016-09-08 13:54:35 -0700 | [diff] [blame] | 557 | status_t VirtualDisplaySurface::disconnect(int api, DisconnectMode mode) { | 
|  | 558 | return mSource[SOURCE_SINK]->disconnect(api, mode); | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 559 | } | 
|  | 560 |  | 
| Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 561 | status_t VirtualDisplaySurface::setSidebandStream(const sp<NativeHandle>& /*stream*/) { | 
|  | 562 | return INVALID_OPERATION; | 
|  | 563 | } | 
|  | 564 |  | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 565 | void VirtualDisplaySurface::allocateBuffers(uint32_t /* width */, | 
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 566 | uint32_t /* height */, PixelFormat /* format */, uint64_t /* usage */) { | 
| Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 567 | // TODO: Should we actually allocate buffers for a virtual display? | 
|  | 568 | } | 
|  | 569 |  | 
| Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 570 | status_t VirtualDisplaySurface::allowAllocation(bool /* allow */) { | 
|  | 571 | return INVALID_OPERATION; | 
|  | 572 | } | 
|  | 573 |  | 
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 574 | status_t VirtualDisplaySurface::setGenerationNumber(uint32_t /* generation */) { | 
|  | 575 | ALOGE("setGenerationNumber not supported on VirtualDisplaySurface"); | 
|  | 576 | return INVALID_OPERATION; | 
|  | 577 | } | 
|  | 578 |  | 
| Dan Stoza | c6f30bd | 2015-06-08 09:32:50 -0700 | [diff] [blame] | 579 | String8 VirtualDisplaySurface::getConsumerName() const { | 
|  | 580 | return String8("VirtualDisplaySurface"); | 
|  | 581 | } | 
|  | 582 |  | 
| Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 583 | status_t VirtualDisplaySurface::setSharedBufferMode(bool /*sharedBufferMode*/) { | 
|  | 584 | ALOGE("setSharedBufferMode not supported on VirtualDisplaySurface"); | 
| Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 585 | return INVALID_OPERATION; | 
|  | 586 | } | 
|  | 587 |  | 
|  | 588 | status_t VirtualDisplaySurface::setAutoRefresh(bool /*autoRefresh*/) { | 
|  | 589 | ALOGE("setAutoRefresh not supported on VirtualDisplaySurface"); | 
|  | 590 | return INVALID_OPERATION; | 
| Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 591 | } | 
|  | 592 |  | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 593 | status_t VirtualDisplaySurface::setDequeueTimeout(nsecs_t /* timeout */) { | 
|  | 594 | ALOGE("setDequeueTimeout not supported on VirtualDisplaySurface"); | 
|  | 595 | return INVALID_OPERATION; | 
|  | 596 | } | 
|  | 597 |  | 
| Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 598 | status_t VirtualDisplaySurface::getLastQueuedBuffer( | 
| John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 599 | sp<GraphicBuffer>* /*outBuffer*/, sp<Fence>* /*outFence*/, | 
|  | 600 | float[16] /* outTransformMatrix*/) { | 
| Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 601 | ALOGE("getLastQueuedBuffer not supported on VirtualDisplaySurface"); | 
|  | 602 | return INVALID_OPERATION; | 
|  | 603 | } | 
|  | 604 |  | 
| Pablo Ceballos | 8e3e92b | 2016-06-27 17:56:53 -0700 | [diff] [blame] | 605 | status_t VirtualDisplaySurface::getUniqueId(uint64_t* /*outId*/) const { | 
|  | 606 | ALOGE("getUniqueId not supported on VirtualDisplaySurface"); | 
|  | 607 | return INVALID_OPERATION; | 
|  | 608 | } | 
|  | 609 |  | 
| Chia-I Wu | e2786ea | 2017-08-07 10:36:08 -0700 | [diff] [blame] | 610 | status_t VirtualDisplaySurface::getConsumerUsage(uint64_t* outUsage) const { | 
|  | 611 | return mSource[SOURCE_SINK]->getConsumerUsage(outUsage); | 
|  | 612 | } | 
|  | 613 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 614 | void VirtualDisplaySurface::updateQueueBufferOutput( | 
| Brian Anderson | 3d4039d | 2016-09-23 16:31:30 -0700 | [diff] [blame] | 615 | QueueBufferOutput&& qbo) { | 
|  | 616 | mQueueBufferOutput = std::move(qbo); | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 617 | mQueueBufferOutput.transformHint = 0; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 618 | } | 
|  | 619 |  | 
|  | 620 | void VirtualDisplaySurface::resetPerFrameState() { | 
|  | 621 | mCompositionType = COMPOSITION_UNKNOWN; | 
| mayank parshar | b988f85 | 2014-01-10 10:27:45 +0530 | [diff] [blame] | 622 | mFbFence = Fence::NO_FENCE; | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 623 | mOutputFence = Fence::NO_FENCE; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 624 | mOutputProducerSlot = -1; | 
| mayank parshar | fdfde88 | 2014-01-23 15:08:31 +0530 | [diff] [blame] | 625 | mFbProducerSlot = -1; | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 626 | } | 
|  | 627 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 628 | status_t VirtualDisplaySurface::refreshOutputBuffer() { | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 629 | LOG_FATAL_IF(!mDisplayId); | 
|  | 630 |  | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 631 | if (mOutputProducerSlot >= 0) { | 
|  | 632 | mSource[SOURCE_SINK]->cancelBuffer( | 
|  | 633 | mapProducer2SourceSlot(SOURCE_SINK, mOutputProducerSlot), | 
|  | 634 | mOutputFence); | 
|  | 635 | } | 
|  | 636 |  | 
|  | 637 | int sslot; | 
| Jesse Hall | 1e27ba2 | 2013-09-27 09:05:09 -0700 | [diff] [blame] | 638 | status_t result = dequeueBuffer(SOURCE_SINK, mOutputFormat, mOutputUsage, | 
|  | 639 | &sslot, &mOutputFence); | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 640 | if (result < 0) | 
|  | 641 | return result; | 
|  | 642 | mOutputProducerSlot = mapSource2ProducerSlot(SOURCE_SINK, sslot); | 
|  | 643 |  | 
| Jesse Hall | b716e57 | 2013-10-01 17:25:20 -0700 | [diff] [blame] | 644 | // On GLES-only frames, we don't have the right output buffer acquire fence | 
|  | 645 | // until after GLES calls queueBuffer(). So here we just set the buffer | 
|  | 646 | // (for use in HWC prepare) but not the fence; we'll call this again with | 
|  | 647 | // the proper fence once we have it. | 
| Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 648 | result = mHwc.setOutputBuffer(*mDisplayId, Fence::NO_FENCE, | 
|  | 649 | mProducerBuffers[mOutputProducerSlot]); | 
| Jesse Hall | 028dc8f | 2013-08-20 16:35:32 -0700 | [diff] [blame] | 650 |  | 
|  | 651 | return result; | 
|  | 652 | } | 
|  | 653 |  | 
| Jesse Hall | 38efe86 | 2013-04-06 23:12:29 -0700 | [diff] [blame] | 654 | // This slot mapping function is its own inverse, so two copies are unnecessary. | 
|  | 655 | // Both are kept to make the intent clear where the function is called, and for | 
|  | 656 | // the (unlikely) chance that we switch to a different mapping function. | 
|  | 657 | int VirtualDisplaySurface::mapSource2ProducerSlot(Source source, int sslot) { | 
|  | 658 | if (source == SOURCE_SCRATCH) { | 
|  | 659 | return BufferQueue::NUM_BUFFER_SLOTS - sslot - 1; | 
|  | 660 | } else { | 
|  | 661 | return sslot; | 
|  | 662 | } | 
|  | 663 | } | 
|  | 664 | int VirtualDisplaySurface::mapProducer2SourceSlot(Source source, int pslot) { | 
|  | 665 | return mapSource2ProducerSlot(source, pslot); | 
|  | 666 | } | 
|  | 667 |  | 
|  | 668 | VirtualDisplaySurface::Source | 
|  | 669 | VirtualDisplaySurface::fbSourceForCompositionType(CompositionType type) { | 
|  | 670 | return type == COMPOSITION_MIXED ? SOURCE_SCRATCH : SOURCE_SINK; | 
|  | 671 | } | 
|  | 672 |  | 
|  | 673 | const char* VirtualDisplaySurface::dbgStateStr() const { | 
|  | 674 | switch (mDbgState) { | 
|  | 675 | case DBG_STATE_IDLE:      return "IDLE"; | 
|  | 676 | case DBG_STATE_PREPARED:  return "PREPARED"; | 
|  | 677 | case DBG_STATE_GLES:      return "GLES"; | 
|  | 678 | case DBG_STATE_GLES_DONE: return "GLES_DONE"; | 
|  | 679 | case DBG_STATE_HWC:       return "HWC"; | 
|  | 680 | default:                  return "INVALID"; | 
|  | 681 | } | 
|  | 682 | } | 
|  | 683 |  | 
|  | 684 | const char* VirtualDisplaySurface::dbgSourceStr(Source s) { | 
|  | 685 | switch (s) { | 
|  | 686 | case SOURCE_SINK:    return "SINK"; | 
|  | 687 | case SOURCE_SCRATCH: return "SCRATCH"; | 
|  | 688 | default:             return "INVALID"; | 
|  | 689 | } | 
|  | 690 | } | 
|  | 691 |  | 
| Jesse Hall | 99c7dbb | 2013-03-14 14:29:29 -0700 | [diff] [blame] | 692 | // --------------------------------------------------------------------------- | 
|  | 693 | } // namespace android | 
|  | 694 | // --------------------------------------------------------------------------- |