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