The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 17 | #include <stdlib.h> |
| 18 | #include <stdint.h> |
| 19 | #include <math.h> |
| 20 | #include <sys/types.h> |
| 21 | |
| 22 | #include <utils/Errors.h> |
| 23 | #include <utils/Log.h> |
| 24 | #include <utils/StopWatch.h> |
| 25 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 26 | #include <ui/GraphicBuffer.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | #include <ui/PixelFormat.h> |
Mathias Agopian | cbc4c9f | 2009-06-23 21:11:43 -0700 | [diff] [blame] | 28 | #include <ui/FramebufferNativeWindow.h> |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 29 | #include <ui/Rect.h> |
| 30 | #include <ui/Region.h> |
Mathias Agopian | cbc4c9f | 2009-06-23 21:11:43 -0700 | [diff] [blame] | 31 | |
| 32 | #include <hardware/copybit.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 | |
| 34 | #include "LayerBuffer.h" |
| 35 | #include "SurfaceFlinger.h" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | #include "DisplayHardware/DisplayHardware.h" |
| 37 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | namespace android { |
| 39 | |
| 40 | // --------------------------------------------------------------------------- |
| 41 | |
| 42 | const uint32_t LayerBuffer::typeInfo = LayerBaseClient::typeInfo | 0x20; |
| 43 | const char* const LayerBuffer::typeID = "LayerBuffer"; |
Mathias Agopian | 0b0722f | 2009-10-29 18:29:30 -0700 | [diff] [blame] | 44 | gralloc_module_t const* LayerBuffer::sGrallocModule = 0; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | |
| 46 | // --------------------------------------------------------------------------- |
| 47 | |
| 48 | LayerBuffer::LayerBuffer(SurfaceFlinger* flinger, DisplayID display, |
Mathias Agopian | 6edf5af | 2009-06-19 17:00:27 -0700 | [diff] [blame] | 49 | const sp<Client>& client, int32_t i) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | : LayerBaseClient(flinger, display, client, i), |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 51 | mNeedsBlending(false), mBlitEngine(0) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | { |
| 53 | } |
| 54 | |
| 55 | LayerBuffer::~LayerBuffer() |
| 56 | { |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 57 | if (mBlitEngine) { |
| 58 | copybit_close(mBlitEngine); |
| 59 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 60 | } |
| 61 | |
Mathias Agopian | 6cf0db2 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 62 | void LayerBuffer::onFirstRef() |
| 63 | { |
Mathias Agopian | c660395 | 2009-06-23 20:06:46 -0700 | [diff] [blame] | 64 | LayerBaseClient::onFirstRef(); |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 65 | mSurface = new SurfaceLayerBuffer(mFlinger, clientIndex(), |
Mathias Agopian | 6cf0db2 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 66 | const_cast<LayerBuffer *>(this)); |
Mathias Agopian | 0b0722f | 2009-10-29 18:29:30 -0700 | [diff] [blame] | 67 | |
| 68 | hw_module_t const* module = (hw_module_t const*)sGrallocModule; |
| 69 | if (!module) { |
| 70 | // NOTE: technically there is a race here, but it shouldn't |
| 71 | // cause any problem since hw_get_module() always returns |
| 72 | // the same value. |
| 73 | if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) { |
| 74 | sGrallocModule = (gralloc_module_t const *)module; |
| 75 | } |
| 76 | } |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 77 | |
| 78 | if (hw_get_module(COPYBIT_HARDWARE_MODULE_ID, &module) == 0) { |
| 79 | copybit_open(module, &mBlitEngine); |
| 80 | } |
Mathias Agopian | 6cf0db2 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 83 | sp<LayerBaseClient::Surface> LayerBuffer::createSurface() const |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 84 | { |
Mathias Agopian | 6cf0db2 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 85 | return mSurface; |
| 86 | } |
| 87 | |
| 88 | status_t LayerBuffer::ditch() |
| 89 | { |
| 90 | mSurface.clear(); |
| 91 | return NO_ERROR; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | bool LayerBuffer::needsBlending() const { |
| 95 | return mNeedsBlending; |
| 96 | } |
| 97 | |
| 98 | void LayerBuffer::setNeedsBlending(bool blending) { |
| 99 | mNeedsBlending = blending; |
| 100 | } |
| 101 | |
| 102 | void LayerBuffer::postBuffer(ssize_t offset) |
| 103 | { |
| 104 | sp<Source> source(getSource()); |
| 105 | if (source != 0) |
| 106 | source->postBuffer(offset); |
| 107 | } |
| 108 | |
| 109 | void LayerBuffer::unregisterBuffers() |
| 110 | { |
| 111 | sp<Source> source(clearSource()); |
| 112 | if (source != 0) |
| 113 | source->unregisterBuffers(); |
| 114 | } |
| 115 | |
| 116 | uint32_t LayerBuffer::doTransaction(uint32_t flags) |
| 117 | { |
| 118 | sp<Source> source(getSource()); |
| 119 | if (source != 0) |
| 120 | source->onTransaction(flags); |
Mathias Agopian | 4c29c94 | 2009-11-19 14:46:26 -0800 | [diff] [blame] | 121 | uint32_t res = LayerBase::doTransaction(flags); |
| 122 | // we always want filtering for these surfaces |
Mathias Agopian | b548dbb | 2009-12-08 19:29:38 -0800 | [diff] [blame] | 123 | mUseLinearFiltering = !(mFlags & DisplayHardware::SLOW_CONFIG); |
Mathias Agopian | 4c29c94 | 2009-11-19 14:46:26 -0800 | [diff] [blame] | 124 | return res; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | void LayerBuffer::unlockPageFlip(const Transform& planeTransform, |
| 128 | Region& outDirtyRegion) |
| 129 | { |
| 130 | // this code-path must be as tight as possible, it's called each time |
| 131 | // the screen is composited. |
| 132 | sp<Source> source(getSource()); |
| 133 | if (source != 0) |
| 134 | source->onVisibilityResolved(planeTransform); |
| 135 | LayerBase::unlockPageFlip(planeTransform, outDirtyRegion); |
| 136 | } |
| 137 | |
| 138 | void LayerBuffer::onDraw(const Region& clip) const |
| 139 | { |
| 140 | sp<Source> source(getSource()); |
| 141 | if (LIKELY(source != 0)) { |
| 142 | source->onDraw(clip); |
| 143 | } else { |
| 144 | clearWithOpenGL(clip); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | bool LayerBuffer::transformed() const |
| 149 | { |
| 150 | sp<Source> source(getSource()); |
| 151 | if (LIKELY(source != 0)) |
| 152 | return source->transformed(); |
| 153 | return false; |
| 154 | } |
| 155 | |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 156 | void LayerBuffer::serverDestroy() |
| 157 | { |
| 158 | sp<Source> source(clearSource()); |
| 159 | if (source != 0) { |
| 160 | source->destroy(); |
| 161 | } |
| 162 | } |
| 163 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 164 | /** |
| 165 | * This creates a "buffer" source for this surface |
| 166 | */ |
| 167 | status_t LayerBuffer::registerBuffers(const ISurface::BufferHeap& buffers) |
| 168 | { |
| 169 | Mutex::Autolock _l(mLock); |
| 170 | if (mSource != 0) |
| 171 | return INVALID_OPERATION; |
| 172 | |
| 173 | sp<BufferSource> source = new BufferSource(*this, buffers); |
| 174 | |
| 175 | status_t result = source->getStatus(); |
| 176 | if (result == NO_ERROR) { |
| 177 | mSource = source; |
| 178 | } |
| 179 | return result; |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * This creates an "overlay" source for this surface |
| 184 | */ |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 185 | sp<OverlayRef> LayerBuffer::createOverlay(uint32_t w, uint32_t h, int32_t f, |
| 186 | int32_t orientation) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 187 | { |
| 188 | sp<OverlayRef> result; |
| 189 | Mutex::Autolock _l(mLock); |
| 190 | if (mSource != 0) |
| 191 | return result; |
| 192 | |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 193 | sp<OverlaySource> source = new OverlaySource(*this, &result, w, h, f, orientation); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 194 | if (result != 0) { |
| 195 | mSource = source; |
| 196 | } |
| 197 | return result; |
| 198 | } |
| 199 | |
| 200 | sp<LayerBuffer::Source> LayerBuffer::getSource() const { |
| 201 | Mutex::Autolock _l(mLock); |
| 202 | return mSource; |
| 203 | } |
| 204 | |
| 205 | sp<LayerBuffer::Source> LayerBuffer::clearSource() { |
| 206 | sp<Source> source; |
| 207 | Mutex::Autolock _l(mLock); |
| 208 | source = mSource; |
| 209 | mSource.clear(); |
| 210 | return source; |
| 211 | } |
| 212 | |
| 213 | // ============================================================================ |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 214 | // LayerBuffer::SurfaceLayerBuffer |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 215 | // ============================================================================ |
| 216 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 217 | LayerBuffer::SurfaceLayerBuffer::SurfaceLayerBuffer(const sp<SurfaceFlinger>& flinger, |
Mathias Agopian | 6cf0db2 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 218 | SurfaceID id, const sp<LayerBuffer>& owner) |
| 219 | : LayerBaseClient::Surface(flinger, id, owner->getIdentity(), owner) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 220 | { |
| 221 | } |
| 222 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 223 | LayerBuffer::SurfaceLayerBuffer::~SurfaceLayerBuffer() |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 224 | { |
| 225 | unregisterBuffers(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 226 | } |
| 227 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 228 | status_t LayerBuffer::SurfaceLayerBuffer::registerBuffers( |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 229 | const ISurface::BufferHeap& buffers) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 230 | { |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 231 | sp<LayerBuffer> owner(getOwner()); |
| 232 | if (owner != 0) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 233 | return owner->registerBuffers(buffers); |
| 234 | return NO_INIT; |
| 235 | } |
| 236 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 237 | void LayerBuffer::SurfaceLayerBuffer::postBuffer(ssize_t offset) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 238 | { |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 239 | sp<LayerBuffer> owner(getOwner()); |
| 240 | if (owner != 0) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 241 | owner->postBuffer(offset); |
| 242 | } |
| 243 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 244 | void LayerBuffer::SurfaceLayerBuffer::unregisterBuffers() |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 | { |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 246 | sp<LayerBuffer> owner(getOwner()); |
| 247 | if (owner != 0) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 248 | owner->unregisterBuffers(); |
| 249 | } |
| 250 | |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 251 | sp<OverlayRef> LayerBuffer::SurfaceLayerBuffer::createOverlay( |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 252 | uint32_t w, uint32_t h, int32_t format, int32_t orientation) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 253 | sp<OverlayRef> result; |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 254 | sp<LayerBuffer> owner(getOwner()); |
| 255 | if (owner != 0) |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 256 | result = owner->createOverlay(w, h, format, orientation); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 257 | return result; |
| 258 | } |
| 259 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 260 | // ============================================================================ |
| 261 | // LayerBuffer::Buffer |
| 262 | // ============================================================================ |
| 263 | |
| 264 | LayerBuffer::Buffer::Buffer(const ISurface::BufferHeap& buffers, ssize_t offset) |
Mathias Agopian | 7323e54 | 2010-01-20 13:24:14 -0800 | [diff] [blame] | 265 | : mBufferHeap(buffers), mSupportsCopybit(false) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 266 | { |
| 267 | NativeBuffer& src(mNativeBuffer); |
Mathias Agopian | d86beb9 | 2009-12-02 16:23:11 -0800 | [diff] [blame] | 268 | src.crop.l = 0; |
| 269 | src.crop.t = 0; |
| 270 | src.crop.r = buffers.w; |
| 271 | src.crop.b = buffers.h; |
| 272 | |
| 273 | src.img.w = buffers.hor_stride ?: buffers.w; |
| 274 | src.img.h = buffers.ver_stride ?: buffers.h; |
| 275 | src.img.format = buffers.format; |
| 276 | src.img.base = (void*)(intptr_t(buffers.heap->base()) + offset); |
| 277 | src.img.handle = 0; |
Mathias Agopian | 2eab9d8 | 2009-06-24 16:55:59 -0700 | [diff] [blame] | 278 | |
Mathias Agopian | 0b0722f | 2009-10-29 18:29:30 -0700 | [diff] [blame] | 279 | gralloc_module_t const * module = LayerBuffer::getGrallocModule(); |
| 280 | if (module && module->perform) { |
| 281 | int err = module->perform(module, |
| 282 | GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER, |
| 283 | buffers.heap->heapID(), buffers.heap->getSize(), |
| 284 | offset, buffers.heap->base(), |
| 285 | &src.img.handle); |
| 286 | |
Mathias Agopian | 7323e54 | 2010-01-20 13:24:14 -0800 | [diff] [blame] | 287 | // we can fail here is the passed buffer is purely software |
| 288 | mSupportsCopybit = (err == NO_ERROR); |
Mathias Agopian | 0b0722f | 2009-10-29 18:29:30 -0700 | [diff] [blame] | 289 | } |
Mathias Agopian | d86beb9 | 2009-12-02 16:23:11 -0800 | [diff] [blame] | 290 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 291 | |
| 292 | LayerBuffer::Buffer::~Buffer() |
| 293 | { |
Mathias Agopian | 2eab9d8 | 2009-06-24 16:55:59 -0700 | [diff] [blame] | 294 | NativeBuffer& src(mNativeBuffer); |
Mathias Agopian | 0b0722f | 2009-10-29 18:29:30 -0700 | [diff] [blame] | 295 | if (src.img.handle) { |
| 296 | native_handle_delete(src.img.handle); |
| 297 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | // ============================================================================ |
| 301 | // LayerBuffer::Source |
| 302 | // LayerBuffer::BufferSource |
| 303 | // LayerBuffer::OverlaySource |
| 304 | // ============================================================================ |
| 305 | |
| 306 | LayerBuffer::Source::Source(LayerBuffer& layer) |
| 307 | : mLayer(layer) |
| 308 | { |
| 309 | } |
| 310 | LayerBuffer::Source::~Source() { |
| 311 | } |
| 312 | void LayerBuffer::Source::onDraw(const Region& clip) const { |
| 313 | } |
| 314 | void LayerBuffer::Source::onTransaction(uint32_t flags) { |
| 315 | } |
| 316 | void LayerBuffer::Source::onVisibilityResolved( |
| 317 | const Transform& planeTransform) { |
| 318 | } |
| 319 | void LayerBuffer::Source::postBuffer(ssize_t offset) { |
| 320 | } |
| 321 | void LayerBuffer::Source::unregisterBuffers() { |
| 322 | } |
| 323 | bool LayerBuffer::Source::transformed() const { |
| 324 | return mLayer.mTransformed; |
| 325 | } |
| 326 | |
| 327 | // --------------------------------------------------------------------------- |
| 328 | |
| 329 | LayerBuffer::BufferSource::BufferSource(LayerBuffer& layer, |
| 330 | const ISurface::BufferHeap& buffers) |
Mathias Agopian | fcdd394 | 2010-02-04 17:13:06 -0800 | [diff] [blame] | 331 | : Source(layer), mStatus(NO_ERROR), mBufferSize(0), |
| 332 | mUseEGLImageDirectly(true) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 333 | { |
| 334 | if (buffers.heap == NULL) { |
| 335 | // this is allowed, but in this case, it is illegal to receive |
| 336 | // postBuffer(). The surface just erases the framebuffer with |
| 337 | // fully transparent pixels. |
| 338 | mBufferHeap = buffers; |
| 339 | mLayer.setNeedsBlending(false); |
| 340 | return; |
| 341 | } |
| 342 | |
| 343 | status_t err = (buffers.heap->heapID() >= 0) ? NO_ERROR : NO_INIT; |
| 344 | if (err != NO_ERROR) { |
| 345 | LOGE("LayerBuffer::BufferSource: invalid heap (%s)", strerror(err)); |
| 346 | mStatus = err; |
| 347 | return; |
| 348 | } |
| 349 | |
| 350 | PixelFormatInfo info; |
| 351 | err = getPixelFormatInfo(buffers.format, &info); |
| 352 | if (err != NO_ERROR) { |
| 353 | LOGE("LayerBuffer::BufferSource: invalid format %d (%s)", |
| 354 | buffers.format, strerror(err)); |
| 355 | mStatus = err; |
| 356 | return; |
| 357 | } |
| 358 | |
| 359 | if (buffers.hor_stride<0 || buffers.ver_stride<0) { |
| 360 | LOGE("LayerBuffer::BufferSource: invalid parameters " |
| 361 | "(w=%d, h=%d, xs=%d, ys=%d)", |
| 362 | buffers.w, buffers.h, buffers.hor_stride, buffers.ver_stride); |
| 363 | mStatus = BAD_VALUE; |
| 364 | return; |
| 365 | } |
| 366 | |
| 367 | mBufferHeap = buffers; |
| 368 | mLayer.setNeedsBlending((info.h_alpha - info.l_alpha) > 0); |
| 369 | mBufferSize = info.getScanlineSize(buffers.hor_stride)*buffers.ver_stride; |
| 370 | mLayer.forceVisibilityTransaction(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | LayerBuffer::BufferSource::~BufferSource() |
| 374 | { |
Mathias Agopian | 2d41cb9 | 2010-01-21 16:04:56 -0800 | [diff] [blame] | 375 | class MessageDestroyTexture : public MessageBase { |
| 376 | SurfaceFlinger* flinger; |
| 377 | GLuint name; |
| 378 | public: |
| 379 | MessageDestroyTexture( |
| 380 | SurfaceFlinger* flinger, GLuint name) |
| 381 | : flinger(flinger), name(name) { } |
| 382 | virtual bool handler() { |
| 383 | glDeleteTextures(1, &name); |
| 384 | return true; |
| 385 | } |
| 386 | }; |
| 387 | |
Mathias Agopian | 999543b | 2009-06-23 18:08:22 -0700 | [diff] [blame] | 388 | if (mTexture.name != -1U) { |
Mathias Agopian | 2d41cb9 | 2010-01-21 16:04:56 -0800 | [diff] [blame] | 389 | // GL textures can only be destroyed from the GL thread |
| 390 | mLayer.mFlinger->mEventQueue.postMessage( |
| 391 | new MessageDestroyTexture(mLayer.mFlinger.get(), mTexture.name) ); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 392 | } |
Mathias Agopian | 9042b45 | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 393 | if (mTexture.image != EGL_NO_IMAGE_KHR) { |
| 394 | EGLDisplay dpy(mLayer.mFlinger->graphicPlane(0).getEGLDisplay()); |
| 395 | eglDestroyImageKHR(dpy, mTexture.image); |
Mathias Agopian | 68eeb80 | 2009-06-25 15:39:25 -0700 | [diff] [blame] | 396 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | void LayerBuffer::BufferSource::postBuffer(ssize_t offset) |
| 400 | { |
| 401 | ISurface::BufferHeap buffers; |
| 402 | { // scope for the lock |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 403 | Mutex::Autolock _l(mBufferSourceLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 404 | buffers = mBufferHeap; |
| 405 | if (buffers.heap != 0) { |
| 406 | const size_t memorySize = buffers.heap->getSize(); |
| 407 | if ((size_t(offset) + mBufferSize) > memorySize) { |
| 408 | LOGE("LayerBuffer::BufferSource::postBuffer() " |
| 409 | "invalid buffer (offset=%d, size=%d, heap-size=%d", |
| 410 | int(offset), int(mBufferSize), int(memorySize)); |
| 411 | return; |
| 412 | } |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | sp<Buffer> buffer; |
| 417 | if (buffers.heap != 0) { |
| 418 | buffer = new LayerBuffer::Buffer(buffers, offset); |
| 419 | if (buffer->getStatus() != NO_ERROR) |
| 420 | buffer.clear(); |
| 421 | setBuffer(buffer); |
| 422 | mLayer.invalidate(); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | void LayerBuffer::BufferSource::unregisterBuffers() |
| 427 | { |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 428 | Mutex::Autolock _l(mBufferSourceLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 429 | mBufferHeap.heap.clear(); |
| 430 | mBuffer.clear(); |
| 431 | mLayer.invalidate(); |
| 432 | } |
| 433 | |
| 434 | sp<LayerBuffer::Buffer> LayerBuffer::BufferSource::getBuffer() const |
| 435 | { |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 436 | Mutex::Autolock _l(mBufferSourceLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 437 | return mBuffer; |
| 438 | } |
| 439 | |
| 440 | void LayerBuffer::BufferSource::setBuffer(const sp<LayerBuffer::Buffer>& buffer) |
| 441 | { |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 442 | Mutex::Autolock _l(mBufferSourceLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 443 | mBuffer = buffer; |
| 444 | } |
| 445 | |
| 446 | bool LayerBuffer::BufferSource::transformed() const |
| 447 | { |
| 448 | return mBufferHeap.transform ? true : Source::transformed(); |
| 449 | } |
| 450 | |
| 451 | void LayerBuffer::BufferSource::onDraw(const Region& clip) const |
| 452 | { |
Mathias Agopian | 999543b | 2009-06-23 18:08:22 -0700 | [diff] [blame] | 453 | sp<Buffer> ourBuffer(getBuffer()); |
| 454 | if (UNLIKELY(ourBuffer == 0)) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 455 | // nothing to do, we don't have a buffer |
| 456 | mLayer.clearWithOpenGL(clip); |
| 457 | return; |
| 458 | } |
| 459 | |
Mathias Agopian | cbc4c9f | 2009-06-23 21:11:43 -0700 | [diff] [blame] | 460 | status_t err = NO_ERROR; |
| 461 | NativeBuffer src(ourBuffer->getBuffer()); |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 462 | const Rect transformedBounds(mLayer.getTransformedBounds()); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 463 | |
Mathias Agopian | a1a1798 | 2010-01-21 16:27:30 -0800 | [diff] [blame] | 464 | if (UNLIKELY(mTexture.name == -1LU)) { |
| 465 | mTexture.name = mLayer.createTexture(); |
| 466 | } |
| 467 | |
Mathias Agopian | 9042b45 | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 468 | #if defined(EGL_ANDROID_image_native_buffer) |
| 469 | if (mLayer.mFlags & DisplayHardware::DIRECT_TEXTURE) { |
Mathias Agopian | fcdd394 | 2010-02-04 17:13:06 -0800 | [diff] [blame] | 470 | err = INVALID_OPERATION; |
| 471 | if (ourBuffer->supportsCopybit()) { |
| 472 | // First, try to use the buffer as an EGLImage directly |
| 473 | if (mUseEGLImageDirectly) { |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 474 | // NOTE: Assume the buffer is allocated with the proper USAGE flags |
Mathias Agopian | fcdd394 | 2010-02-04 17:13:06 -0800 | [diff] [blame] | 475 | sp<GraphicBuffer> buffer = new GraphicBuffer( |
| 476 | src.img.w, src.img.h, src.img.format, |
| 477 | GraphicBuffer::USAGE_HW_TEXTURE, |
| 478 | src.img.w, src.img.handle, false); |
| 479 | err = mLayer.initializeEglImage(buffer, &mTexture); |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 480 | if (err != NO_ERROR) { |
Mathias Agopian | fcdd394 | 2010-02-04 17:13:06 -0800 | [diff] [blame] | 481 | mUseEGLImageDirectly = false; |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 482 | } |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 483 | } |
Mathias Agopian | fcdd394 | 2010-02-04 17:13:06 -0800 | [diff] [blame] | 484 | copybit_device_t* copybit = mLayer.mBlitEngine; |
| 485 | if (copybit && err != NO_ERROR) { |
| 486 | // create our EGLImageKHR the first time |
| 487 | err = initTempBuffer(); |
| 488 | if (err == NO_ERROR) { |
| 489 | // NOTE: Assume the buffer is allocated with the proper USAGE flags |
| 490 | const NativeBuffer& dst(mTempBuffer); |
| 491 | region_iterator clip(Region(Rect(dst.crop.r, dst.crop.b))); |
| 492 | copybit->set_parameter(copybit, COPYBIT_TRANSFORM, 0); |
| 493 | copybit->set_parameter(copybit, COPYBIT_PLANE_ALPHA, 0xFF); |
| 494 | copybit->set_parameter(copybit, COPYBIT_DITHER, COPYBIT_ENABLE); |
| 495 | err = copybit->stretch(copybit, &dst.img, &src.img, |
| 496 | &dst.crop, &src.crop, &clip); |
| 497 | if (err != NO_ERROR) { |
| 498 | clearTempBufferImage(); |
| 499 | } |
| 500 | } |
| 501 | } |
Mathias Agopian | 90daccf | 2009-11-05 23:08:00 -0800 | [diff] [blame] | 502 | } |
Mathias Agopian | cbc4c9f | 2009-06-23 21:11:43 -0700 | [diff] [blame] | 503 | } |
Mathias Agopian | 26c28b1 | 2009-06-24 22:39:26 -0700 | [diff] [blame] | 504 | #endif |
Mathias Agopian | 9042b45 | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 505 | else { |
| 506 | err = INVALID_OPERATION; |
| 507 | } |
| 508 | |
| 509 | if (err != NO_ERROR) { |
Mathias Agopian | f007a2f | 2009-10-28 21:00:29 -0700 | [diff] [blame] | 510 | // slower fallback |
Mathias Agopian | 999543b | 2009-06-23 18:08:22 -0700 | [diff] [blame] | 511 | GGLSurface t; |
| 512 | t.version = sizeof(GGLSurface); |
| 513 | t.width = src.crop.r; |
| 514 | t.height = src.crop.b; |
| 515 | t.stride = src.img.w; |
| 516 | t.vstride= src.img.h; |
| 517 | t.format = src.img.format; |
Mathias Agopian | 2eab9d8 | 2009-06-24 16:55:59 -0700 | [diff] [blame] | 518 | t.data = (GGLubyte*)src.img.base; |
Mathias Agopian | 999543b | 2009-06-23 18:08:22 -0700 | [diff] [blame] | 519 | const Region dirty(Rect(t.width, t.height)); |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 520 | mLayer.loadTexture(&mTexture, dirty, t); |
Mathias Agopian | dff8e58 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 521 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 522 | |
Mathias Agopian | 9042b45 | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 523 | mTexture.transform = mBufferHeap.transform; |
| 524 | mLayer.drawWithOpenGL(clip, mTexture); |
| 525 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 526 | |
Mathias Agopian | 76169da | 2009-12-09 14:32:56 -0800 | [diff] [blame] | 527 | status_t LayerBuffer::BufferSource::initTempBuffer() const |
| 528 | { |
| 529 | // figure out the size we need now |
| 530 | const ISurface::BufferHeap& buffers(mBufferHeap); |
| 531 | uint32_t w = mLayer.mTransformedBounds.width(); |
| 532 | uint32_t h = mLayer.mTransformedBounds.height(); |
| 533 | if (buffers.w * h != buffers.h * w) { |
| 534 | int t = w; w = h; h = t; |
| 535 | } |
| 536 | |
Mathias Agopian | d23fa27 | 2010-01-20 14:31:53 -0800 | [diff] [blame] | 537 | // we're in the copybit case, so make sure we can handle this blit |
| 538 | // we don't have to keep the aspect ratio here |
| 539 | copybit_device_t* copybit = mLayer.mBlitEngine; |
| 540 | const int down = copybit->get(copybit, COPYBIT_MINIFICATION_LIMIT); |
| 541 | const int up = copybit->get(copybit, COPYBIT_MAGNIFICATION_LIMIT); |
| 542 | if (buffers.w > w*down) w = buffers.w / down; |
| 543 | else if (w > buffers.w*up) w = buffers.w*up; |
| 544 | if (buffers.h > h*down) h = buffers.h / down; |
| 545 | else if (h > buffers.h*up) h = buffers.h*up; |
| 546 | |
Mathias Agopian | 76169da | 2009-12-09 14:32:56 -0800 | [diff] [blame] | 547 | if (mTexture.image != EGL_NO_IMAGE_KHR) { |
| 548 | // we have an EGLImage, make sure the needed size didn't change |
| 549 | if (w!=mTexture.width || h!= mTexture.height) { |
| 550 | // delete the EGLImage and texture |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 551 | clearTempBufferImage(); |
Mathias Agopian | 76169da | 2009-12-09 14:32:56 -0800 | [diff] [blame] | 552 | } else { |
| 553 | // we're good, we have an EGLImageKHR and it's (still) the |
| 554 | // right size |
| 555 | return NO_ERROR; |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | // figure out if we need linear filtering |
| 560 | if (buffers.w * h == buffers.h * w) { |
| 561 | // same pixel area, don't use filtering |
| 562 | mLayer.mUseLinearFiltering = false; |
| 563 | } |
| 564 | |
| 565 | // Allocate a temporary buffer and create the corresponding EGLImageKHR |
| 566 | |
| 567 | status_t err; |
| 568 | mTempGraphicBuffer.clear(); |
| 569 | mTempGraphicBuffer = new GraphicBuffer( |
| 570 | w, h, HAL_PIXEL_FORMAT_RGB_565, |
| 571 | GraphicBuffer::USAGE_HW_TEXTURE | |
| 572 | GraphicBuffer::USAGE_HW_2D); |
| 573 | |
| 574 | err = mTempGraphicBuffer->initCheck(); |
| 575 | if (err == NO_ERROR) { |
| 576 | NativeBuffer& dst(mTempBuffer); |
| 577 | dst.img.w = mTempGraphicBuffer->getStride(); |
| 578 | dst.img.h = h; |
| 579 | dst.img.format = mTempGraphicBuffer->getPixelFormat(); |
| 580 | dst.img.handle = (native_handle_t *)mTempGraphicBuffer->handle; |
| 581 | dst.img.base = 0; |
| 582 | dst.crop.l = 0; |
| 583 | dst.crop.t = 0; |
| 584 | dst.crop.r = w; |
| 585 | dst.crop.b = h; |
| 586 | |
| 587 | err = mLayer.initializeEglImage( |
| 588 | mTempGraphicBuffer, &mTexture); |
| 589 | // once the EGLImage has been created (whether it fails |
| 590 | // or not) we don't need the graphic buffer reference |
| 591 | // anymore. |
| 592 | mTempGraphicBuffer.clear(); |
| 593 | } |
| 594 | |
| 595 | return err; |
| 596 | } |
| 597 | |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 598 | void LayerBuffer::BufferSource::clearTempBufferImage() const |
| 599 | { |
Mathias Agopian | a1a1798 | 2010-01-21 16:27:30 -0800 | [diff] [blame] | 600 | // delete the image |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 601 | EGLDisplay dpy(mLayer.mFlinger->graphicPlane(0).getEGLDisplay()); |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 602 | eglDestroyImageKHR(dpy, mTexture.image); |
Mathias Agopian | a1a1798 | 2010-01-21 16:27:30 -0800 | [diff] [blame] | 603 | |
| 604 | // and the associated texture (recreate a name) |
| 605 | glDeleteTextures(1, &mTexture.name); |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 606 | Texture defaultTexture; |
| 607 | mTexture = defaultTexture; |
Mathias Agopian | a1a1798 | 2010-01-21 16:27:30 -0800 | [diff] [blame] | 608 | mTexture.name = mLayer.createTexture(); |
| 609 | |
| 610 | // and the associated buffer |
Mathias Agopian | d2832fb4 | 2010-01-20 13:56:07 -0800 | [diff] [blame] | 611 | mTempGraphicBuffer.clear(); |
| 612 | } |
| 613 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 614 | // --------------------------------------------------------------------------- |
| 615 | |
| 616 | LayerBuffer::OverlaySource::OverlaySource(LayerBuffer& layer, |
| 617 | sp<OverlayRef>* overlayRef, |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 618 | uint32_t w, uint32_t h, int32_t format, int32_t orientation) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 619 | : Source(layer), mVisibilityChanged(false), |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 620 | mOverlay(0), mOverlayHandle(0), mOverlayDevice(0), mOrientation(orientation) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 621 | { |
| 622 | overlay_control_device_t* overlay_dev = mLayer.mFlinger->getOverlayEngine(); |
| 623 | if (overlay_dev == NULL) { |
| 624 | // overlays not supported |
| 625 | return; |
| 626 | } |
| 627 | |
| 628 | mOverlayDevice = overlay_dev; |
| 629 | overlay_t* overlay = overlay_dev->createOverlay(overlay_dev, w, h, format); |
| 630 | if (overlay == NULL) { |
| 631 | // couldn't create the overlay (no memory? no more overlays?) |
| 632 | return; |
| 633 | } |
| 634 | |
| 635 | // enable dithering... |
| 636 | overlay_dev->setParameter(overlay_dev, overlay, |
| 637 | OVERLAY_DITHER, OVERLAY_ENABLE); |
| 638 | |
| 639 | mOverlay = overlay; |
| 640 | mWidth = overlay->w; |
| 641 | mHeight = overlay->h; |
| 642 | mFormat = overlay->format; |
| 643 | mWidthStride = overlay->w_stride; |
| 644 | mHeightStride = overlay->h_stride; |
Rebecca Schultz Zavin | 43ab763 | 2009-07-21 16:17:59 -0700 | [diff] [blame] | 645 | mInitialized = false; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 646 | |
| 647 | mOverlayHandle = overlay->getHandleRef(overlay); |
| 648 | |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 649 | sp<OverlayChannel> channel = new OverlayChannel( &layer ); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 650 | |
| 651 | *overlayRef = new OverlayRef(mOverlayHandle, channel, |
| 652 | mWidth, mHeight, mFormat, mWidthStride, mHeightStride); |
Benny Wong | e38212a | 2009-09-16 14:48:52 -0500 | [diff] [blame] | 653 | mLayer.mFlinger->signalEvent(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | LayerBuffer::OverlaySource::~OverlaySource() |
| 657 | { |
| 658 | if (mOverlay && mOverlayDevice) { |
| 659 | overlay_control_device_t* overlay_dev = mOverlayDevice; |
| 660 | overlay_dev->destroyOverlay(overlay_dev, mOverlay); |
| 661 | } |
| 662 | } |
| 663 | |
Rebecca Schultz Zavin | 7ac5e69 | 2009-07-20 21:18:04 -0700 | [diff] [blame] | 664 | void LayerBuffer::OverlaySource::onDraw(const Region& clip) const |
| 665 | { |
Mathias Agopian | 8ae0384 | 2009-09-15 19:31:28 -0700 | [diff] [blame] | 666 | // this would be where the color-key would be set, should we need it. |
Rebecca Schultz Zavin | c854678 | 2009-09-01 23:06:45 -0700 | [diff] [blame] | 667 | GLclampx red = 0; |
| 668 | GLclampx green = 0; |
Mathias Agopian | 8ae0384 | 2009-09-15 19:31:28 -0700 | [diff] [blame] | 669 | GLclampx blue = 0; |
Rebecca Schultz Zavin | c854678 | 2009-09-01 23:06:45 -0700 | [diff] [blame] | 670 | mLayer.clearWithOpenGL(clip, red, green, blue, 0); |
Rebecca Schultz Zavin | 7ac5e69 | 2009-07-20 21:18:04 -0700 | [diff] [blame] | 671 | } |
| 672 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 673 | void LayerBuffer::OverlaySource::onTransaction(uint32_t flags) |
| 674 | { |
| 675 | const Layer::State& front(mLayer.drawingState()); |
| 676 | const Layer::State& temp(mLayer.currentState()); |
| 677 | if (temp.sequence != front.sequence) { |
| 678 | mVisibilityChanged = true; |
| 679 | } |
| 680 | } |
| 681 | |
| 682 | void LayerBuffer::OverlaySource::onVisibilityResolved( |
| 683 | const Transform& planeTransform) |
| 684 | { |
| 685 | // this code-path must be as tight as possible, it's called each time |
| 686 | // the screen is composited. |
| 687 | if (UNLIKELY(mOverlay != 0)) { |
Rebecca Schultz Zavin | 43ab763 | 2009-07-21 16:17:59 -0700 | [diff] [blame] | 688 | if (mVisibilityChanged || !mInitialized) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 689 | mVisibilityChanged = false; |
Rebecca Schultz Zavin | 43ab763 | 2009-07-21 16:17:59 -0700 | [diff] [blame] | 690 | mInitialized = true; |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 691 | const Rect bounds(mLayer.getTransformedBounds()); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 692 | int x = bounds.left; |
| 693 | int y = bounds.top; |
| 694 | int w = bounds.width(); |
| 695 | int h = bounds.height(); |
| 696 | |
| 697 | // we need a lock here to protect "destroy" |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 698 | Mutex::Autolock _l(mOverlaySourceLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 699 | if (mOverlay) { |
| 700 | overlay_control_device_t* overlay_dev = mOverlayDevice; |
| 701 | overlay_dev->setPosition(overlay_dev, mOverlay, x,y,w,h); |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 702 | // we need to combine the layer orientation and the |
| 703 | // user-requested orientation. |
| 704 | Transform finalTransform = Transform(mOrientation) * |
| 705 | Transform(mLayer.getOrientation()); |
Rebecca Schultz Zavin | 43ab763 | 2009-07-21 16:17:59 -0700 | [diff] [blame] | 706 | overlay_dev->setParameter(overlay_dev, mOverlay, |
Chih-Chung Chang | e1ceec2 | 2010-01-21 17:31:06 -0800 | [diff] [blame] | 707 | OVERLAY_TRANSFORM, finalTransform.getOrientation()); |
Rebecca Schultz Zavin | 7ac5e69 | 2009-07-20 21:18:04 -0700 | [diff] [blame] | 708 | overlay_dev->commit(overlay_dev, mOverlay); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 709 | } |
| 710 | } |
| 711 | } |
| 712 | } |
| 713 | |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 714 | void LayerBuffer::OverlaySource::destroy() |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 715 | { |
| 716 | // we need a lock here to protect "onVisibilityResolved" |
Mathias Agopian | b34d143 | 2009-09-08 20:02:47 -0700 | [diff] [blame] | 717 | Mutex::Autolock _l(mOverlaySourceLock); |
Mathias Agopian | a280496 | 2009-09-08 23:52:08 -0700 | [diff] [blame] | 718 | if (mOverlay && mOverlayDevice) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 719 | overlay_control_device_t* overlay_dev = mOverlayDevice; |
| 720 | overlay_dev->destroyOverlay(overlay_dev, mOverlay); |
| 721 | mOverlay = 0; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | // --------------------------------------------------------------------------- |
| 726 | }; // namespace android |