blob: 64eaecc86bbf224a7b203694f50da82558863fca [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
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 Projectedbf3b62009-03-03 19:31:44 -080017#include <stdlib.h>
18#include <stdint.h>
19#include <sys/types.h>
20
Mathias Agopiana67932f2011-04-20 14:20:59 -070021#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070022#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070023#include <cutils/properties.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080024
25#include <utils/Errors.h>
26#include <utils/Log.h>
27#include <utils/StopWatch.h>
28
Mathias Agopian3330b202009-10-05 17:07:12 -070029#include <ui/GraphicBuffer.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080030#include <ui/PixelFormat.h>
Mathias Agopian9cce3252010-02-09 17:46:37 -080031
32#include <surfaceflinger/Surface.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
34#include "clz.h"
Mathias Agopiana67932f2011-04-20 14:20:59 -070035#include "DisplayHardware/DisplayHardware.h"
36#include "DisplayHardware/HWComposer.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070037#include "GLExtensions.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080039#include "SurfaceFlinger.h"
Mathias Agopiana67932f2011-04-20 14:20:59 -070040#include "SurfaceTextureLayer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080041
42#define DEBUG_RESIZE 0
43
44
45namespace android {
46
47// ---------------------------------------------------------------------------
48
Mathias Agopian96f08192010-06-02 23:28:45 -070049Layer::Layer(SurfaceFlinger* flinger,
50 DisplayID display, const sp<Client>& client)
51 : LayerBaseClient(flinger, display, client),
Mathias Agopiana67932f2011-04-20 14:20:59 -070052 mTextureName(-1U),
53 mQueuedFrames(0),
54 mCurrentTransform(0),
Mathias Agopian933389f2011-07-18 16:15:08 -070055 mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
Mathias Agopiana67932f2011-04-20 14:20:59 -070056 mCurrentOpacity(true),
Mathias Agopian5bf3abe2011-03-11 17:01:07 -080057 mFormat(PIXEL_FORMAT_NONE),
Mathias Agopian1f7bec62010-06-25 18:02:21 -070058 mGLExtensions(GLExtensions::getInstance()),
Mathias Agopiana67932f2011-04-20 14:20:59 -070059 mOpaqueLayer(true),
Mathias Agopiand606de62010-05-10 20:06:11 -070060 mNeedsDithering(false),
Mathias Agopianb7e930d2010-06-01 15:12:58 -070061 mSecure(false),
Mathias Agopian933389f2011-07-18 16:15:08 -070062 mProtectedByApp(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063{
Mathias Agopiana67932f2011-04-20 14:20:59 -070064 mCurrentCrop.makeInvalid();
65 glGenTextures(1, &mTextureName);
Mathias Agopiand606de62010-05-10 20:06:11 -070066}
67
Mathias Agopiana67932f2011-04-20 14:20:59 -070068void Layer::onFirstRef()
Mathias Agopian96f08192010-06-02 23:28:45 -070069{
Mathias Agopiana67932f2011-04-20 14:20:59 -070070 LayerBaseClient::onFirstRef();
Mathias Agopianddc31c32011-06-12 18:05:53 -070071
Mathias Agopiana67932f2011-04-20 14:20:59 -070072 struct FrameQueuedListener : public SurfaceTexture::FrameAvailableListener {
73 FrameQueuedListener(Layer* layer) : mLayer(layer) { }
74 private:
75 wp<Layer> mLayer;
76 virtual void onFrameAvailable() {
77 sp<Layer> that(mLayer.promote());
78 if (that != 0) {
79 that->onFrameQueued();
80 }
81 }
82 };
83 mSurfaceTexture = new SurfaceTextureLayer(mTextureName, this);
84 mSurfaceTexture->setFrameAvailableListener(new FrameQueuedListener(this));
85 mSurfaceTexture->setSynchronousMode(true);
86 mSurfaceTexture->setBufferCountServer(2);
Mathias Agopianb7e930d2010-06-01 15:12:58 -070087}
88
Mathias Agopiana67932f2011-04-20 14:20:59 -070089Layer::~Layer()
Mathias Agopianb7e930d2010-06-01 15:12:58 -070090{
Mathias Agopian47d08122011-08-11 18:18:50 -070091 class MessageDestroyGLState : public MessageBase {
92 GLuint texture;
93 public:
94 MessageDestroyGLState(GLuint texture) : texture(texture) { }
95 virtual bool handler() {
96 glDeleteTextures(1, &texture);
97 return true;
98 }
99 };
100 mFlinger->postMessageAsync( new MessageDestroyGLState(mTextureName) );
Mathias Agopian96f08192010-06-02 23:28:45 -0700101}
102
Mathias Agopiana67932f2011-04-20 14:20:59 -0700103void Layer::onFrameQueued() {
Jamie Gennis3d8063b2011-06-26 18:27:47 -0700104 android_atomic_inc(&mQueuedFrames);
105 mFlinger->signalEvent();
Mathias Agopian579b3f82010-06-08 19:54:15 -0700106}
107
Mathias Agopiand606de62010-05-10 20:06:11 -0700108// called with SurfaceFlinger::mStateLock as soon as the layer is entered
109// in the purgatory list
110void Layer::onRemoved()
111{
Jamie Gennisdbe64862011-07-30 14:33:49 -0700112 mSurfaceTexture->abandon();
Mathias Agopian48d819a2009-09-10 19:41:18 -0700113}
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700114
Mathias Agopiana67932f2011-04-20 14:20:59 -0700115sp<ISurface> Layer::createSurface()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800116{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700117 class BSurface : public BnSurface, public LayerCleaner {
118 wp<const Layer> mOwner;
119 virtual sp<ISurfaceTexture> getSurfaceTexture() const {
120 sp<ISurfaceTexture> res;
121 sp<const Layer> that( mOwner.promote() );
122 if (that != NULL) {
123 res = that->mSurfaceTexture;
124 }
125 return res;
126 }
127 public:
128 BSurface(const sp<SurfaceFlinger>& flinger,
129 const sp<Layer>& layer)
130 : LayerCleaner(flinger, layer), mOwner(layer) { }
131 };
132 sp<ISurface> sur(new BSurface(mFlinger, this));
Mathias Agopiana1f47b92011-02-15 19:01:06 -0800133 return sur;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800134}
135
Jamie Gennis582270d2011-08-17 18:19:00 -0700136wp<IBinder> Layer::getSurfaceTextureBinder() const
137{
138 return mSurfaceTexture->asBinder();
139}
140
Mathias Agopianf9d93272009-06-19 17:00:27 -0700141status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800142 PixelFormat format, uint32_t flags)
143{
Mathias Agopian401c2572009-09-23 19:16:27 -0700144 // this surfaces pixel format
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800145 PixelFormatInfo info;
146 status_t err = getPixelFormatInfo(format, &info);
147 if (err) return err;
148
Mathias Agopian401c2572009-09-23 19:16:27 -0700149 // the display's pixel format
150 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopianca99fb82010-04-14 16:43:44 -0700151 uint32_t const maxSurfaceDims = min(
152 hw.getMaxTextureSize(), hw.getMaxViewportDims());
153
154 // never allow a surface larger than what our underlying GL implementation
155 // can handle.
156 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
157 return BAD_VALUE;
158 }
159
Mathias Agopian401c2572009-09-23 19:16:27 -0700160 PixelFormatInfo displayInfo;
161 getPixelFormatInfo(hw.getFormat(), &displayInfo);
Mathias Agopiana4b740e2009-10-05 18:20:39 -0700162 const uint32_t hwFlags = hw.getFlags();
163
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700164 mFormat = format;
Mathias Agopianeff062c2010-08-25 14:59:15 -0700165
Mathias Agopian3330b202009-10-05 17:07:12 -0700166 mSecure = (flags & ISurfaceComposer::eSecure) ? true : false;
Glenn Kasten16f04532011-01-19 15:27:27 -0800167 mProtectedByApp = (flags & ISurfaceComposer::eProtectedByApp) ? true : false;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700168 mOpaqueLayer = (flags & ISurfaceComposer::eOpaque);
169 mCurrentOpacity = getOpacityForFormat(format);
170
171 mSurfaceTexture->setDefaultBufferSize(w, h);
172 mSurfaceTexture->setDefaultBufferFormat(format);
Mathias Agopianca99fb82010-04-14 16:43:44 -0700173
Mathias Agopian401c2572009-09-23 19:16:27 -0700174 // we use the red index
175 int displayRedSize = displayInfo.getSize(PixelFormatInfo::INDEX_RED);
176 int layerRedsize = info.getSize(PixelFormatInfo::INDEX_RED);
177 mNeedsDithering = layerRedsize > displayRedSize;
178
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800179 return NO_ERROR;
180}
181
Mathias Agopiana350ff92010-08-10 17:14:02 -0700182void Layer::setGeometry(hwc_layer_t* hwcl)
183{
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700184 LayerBaseClient::setGeometry(hwcl);
185
186 hwcl->flags &= ~HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700187
188 // we can't do alpha-fade with the hwc HAL
189 const State& s(drawingState());
190 if (s.alpha < 0xFF) {
191 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700192 }
193
Mathias Agopian29a367b2011-07-12 14:51:45 -0700194 /*
195 * Transformations are applied in this order:
196 * 1) buffer orientation/flip/mirror
197 * 2) state transformation (window manager)
198 * 3) layer orientation (screen orientation)
Mathias Agopianc5953902011-08-12 17:09:09 -0700199 * mOrientation is already the composition of (2) and (3)
Mathias Agopian29a367b2011-07-12 14:51:45 -0700200 * (NOTE: the matrices are multiplied in reverse order)
201 */
202
203 const Transform bufferOrientation(mCurrentTransform);
Mathias Agopian29a367b2011-07-12 14:51:45 -0700204 const Transform layerOrientation(mOrientation);
Mathias Agopianc5953902011-08-12 17:09:09 -0700205 const Transform tr(layerOrientation * bufferOrientation);
Mathias Agopian29a367b2011-07-12 14:51:45 -0700206
207 // this gives us only the "orientation" component of the transform
208 const uint32_t finalTransform = tr.getOrientation();
209
Mathias Agopiana350ff92010-08-10 17:14:02 -0700210 // we can only handle simple transformation
Mathias Agopian29a367b2011-07-12 14:51:45 -0700211 if (finalTransform & Transform::ROT_INVALID) {
Mathias Agopiana350ff92010-08-10 17:14:02 -0700212 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700213 } else {
214 hwcl->transform = finalTransform;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700215 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700216}
217
218void Layer::setPerFrameData(hwc_layer_t* hwcl) {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700219 const sp<GraphicBuffer>& buffer(mActiveBuffer);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700220 if (buffer == NULL) {
Mathias Agopianda9584d2010-12-13 18:51:59 -0800221 // this can happen if the client never drew into this layer yet,
222 // or if we ran out of memory. In that case, don't let
223 // HWC handle it.
224 hwcl->flags |= HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700225 hwcl->handle = NULL;
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700226 } else {
227 hwcl->handle = buffer->handle;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700228 }
Mathias Agopianf3450692010-12-08 17:40:28 -0800229
Mathias Agopiana67932f2011-04-20 14:20:59 -0700230 if (isCropped()) {
231 hwcl->sourceCrop.left = mCurrentCrop.left;
232 hwcl->sourceCrop.top = mCurrentCrop.top;
233 hwcl->sourceCrop.right = mCurrentCrop.right;
234 hwcl->sourceCrop.bottom = mCurrentCrop.bottom;
Mathias Agopianf3450692010-12-08 17:40:28 -0800235 } else {
236 hwcl->sourceCrop.left = 0;
237 hwcl->sourceCrop.top = 0;
Mathias Agopiane8067a72011-08-02 18:29:51 -0700238 if (buffer != NULL) {
239 hwcl->sourceCrop.right = buffer->width;
240 hwcl->sourceCrop.bottom = buffer->height;
241 } else {
242 hwcl->sourceCrop.right = mTransformedBounds.width();
243 hwcl->sourceCrop.bottom = mTransformedBounds.height();
244 }
Mathias Agopianf3450692010-12-08 17:40:28 -0800245 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700246}
247
Mathias Agopiana67932f2011-04-20 14:20:59 -0700248static inline uint16_t pack565(int r, int g, int b) {
249 return (r<<11)|(g<<5)|b;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800250}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800251void Layer::onDraw(const Region& clip) const
252{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700253 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800254 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -0700255 // in fact never been drawn into. This happens frequently with
256 // SurfaceView because the WindowManager can't know when the client
257 // has drawn the first time.
258
259 // If there is nothing under us, we paint the screen in black, otherwise
260 // we just skip this update.
261
262 // figure out if there is something below us
263 Region under;
264 const SurfaceFlinger::LayerVector& drawingLayers(mFlinger->mDrawingState.layersSortedByZ);
265 const size_t count = drawingLayers.size();
266 for (size_t i=0 ; i<count ; ++i) {
267 const sp<LayerBase>& layer(drawingLayers[i]);
268 if (layer.get() == static_cast<LayerBase const*>(this))
269 break;
270 under.orSelf(layer->visibleRegionScreen);
271 }
272 // if not everything below us is covered, we plug the holes!
273 Region holes(clip.subtract(under));
274 if (!holes.isEmpty()) {
Mathias Agopian0a917752010-06-14 21:20:00 -0700275 clearWithOpenGL(holes, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -0700276 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800277 return;
278 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700279
280 GLenum target = mSurfaceTexture->getCurrentTextureTarget();
281 glBindTexture(target, mTextureName);
282 if (getFiltering() || needsFiltering() || isFixedSize() || isCropped()) {
283 // TODO: we could be more subtle with isFixedSize()
284 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
285 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
286 } else {
287 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
288 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
289 }
290 glEnable(target);
291 glMatrixMode(GL_TEXTURE);
292 glLoadMatrixf(mTextureMatrix);
293 glMatrixMode(GL_MODELVIEW);
294
295 drawWithOpenGL(clip);
296
297 glDisable(target);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298}
299
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800300// As documented in libhardware header, formats in the range
301// 0x100 - 0x1FF are specific to the HAL implementation, and
302// are known to have no alpha channel
303// TODO: move definition for device-specific range into
304// hardware.h, instead of using hard-coded values here.
305#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
306
Mathias Agopiana67932f2011-04-20 14:20:59 -0700307bool Layer::getOpacityForFormat(uint32_t format)
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800308{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700309 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
310 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800311 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700312 PixelFormatInfo info;
313 status_t err = getPixelFormatInfo(PixelFormat(format), &info);
314 // in case of error (unknown format), we assume no blending
315 return (err || info.h_alpha <= info.l_alpha);
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800316}
317
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800318
Mathias Agopiana67932f2011-04-20 14:20:59 -0700319bool Layer::isOpaque() const
Mathias Agopiana7f66922010-05-26 22:08:52 -0700320{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700321 // if we don't have a buffer yet, we're translucent regardless of the
322 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700323 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700324 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700325 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700326
327 // if the layer has the opaque flag, then we're always opaque,
328 // otherwise we use the current buffer's format.
329 return mOpaqueLayer || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -0700330}
331
Jamie Gennis7a4d0df2011-03-09 17:05:02 -0800332bool Layer::isProtected() const
333{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700334 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -0800335 return (activeBuffer != 0) &&
336 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
337}
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700338
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800339uint32_t Layer::doTransaction(uint32_t flags)
340{
341 const Layer::State& front(drawingState());
342 const Layer::State& temp(currentState());
343
Mathias Agopiana138f892010-05-21 17:24:35 -0700344 const bool sizeChanged = (front.requested_w != temp.requested_w) ||
345 (front.requested_h != temp.requested_h);
346
347 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700348 // the size changed, we need to ask our client to request a new buffer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800349 LOGD_IF(DEBUG_RESIZE,
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700350 "doTransaction: "
Mathias Agopiana67932f2011-04-20 14:20:59 -0700351 "resize (layer=%p), requested (%dx%d), drawing (%d,%d), "
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700352 "scalingMode=%d",
Mathias Agopiana138f892010-05-21 17:24:35 -0700353 this,
354 int(temp.requested_w), int(temp.requested_h),
Mathias Agopiana67932f2011-04-20 14:20:59 -0700355 int(front.requested_w), int(front.requested_h),
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700356 mCurrentScalingMode);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800357
Mathias Agopiana138f892010-05-21 17:24:35 -0700358 if (!isFixedSize()) {
359 // we're being resized and there is a freeze display request,
360 // acquire a freeze lock, so that the screen stays put
361 // until we've redrawn at the new size; this is to avoid
362 // glitches upon orientation changes.
363 if (mFlinger->hasFreezeRequest()) {
364 // if the surface is hidden, don't try to acquire the
365 // freeze lock, since hidden surfaces may never redraw
366 if (!(front.flags & ISurfaceComposer::eLayerHidden)) {
367 mFreezeLock = mFlinger->getFreezeLock();
368 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800369 }
Mathias Agopiana138f892010-05-21 17:24:35 -0700370
371 // this will make sure LayerBase::doTransaction doesn't update
372 // the drawing state's size
373 Layer::State& editDraw(mDrawingState);
374 editDraw.requested_w = temp.requested_w;
375 editDraw.requested_h = temp.requested_h;
376
377 // record the new size, form this point on, when the client request
378 // a buffer, it'll get the new size.
Mathias Agopiana67932f2011-04-20 14:20:59 -0700379 mSurfaceTexture->setDefaultBufferSize(temp.requested_w, temp.requested_h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800380 }
381 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700382
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800383 if (temp.sequence != front.sequence) {
384 if (temp.flags & ISurfaceComposer::eLayerHidden || temp.alpha == 0) {
385 // this surface is now hidden, so it shouldn't hold a freeze lock
386 // (it may never redraw, which is fine if it is hidden)
387 mFreezeLock.clear();
388 }
389 }
390
391 return LayerBase::doTransaction(flags);
392}
393
Mathias Agopiana138f892010-05-21 17:24:35 -0700394bool Layer::isFixedSize() const {
Mathias Agopian933389f2011-07-18 16:15:08 -0700395 return mCurrentScalingMode != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700396}
397
398bool Layer::isCropped() const {
399 return !mCurrentCrop.isEmpty();
400}
401
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800402// ----------------------------------------------------------------------------
403// pageflip handling...
404// ----------------------------------------------------------------------------
405
406void Layer::lockPageFlip(bool& recomputeVisibleRegions)
407{
Jamie Gennis3d8063b2011-06-26 18:27:47 -0700408 if (mQueuedFrames > 0) {
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700409 const bool oldOpacity = isOpaque();
410
Jamie Gennis3d8063b2011-06-26 18:27:47 -0700411 // signal another event if we have more frames pending
412 if (android_atomic_dec(&mQueuedFrames) > 1) {
413 mFlinger->signalEvent();
414 }
415
Mathias Agopiana67932f2011-04-20 14:20:59 -0700416 if (mSurfaceTexture->updateTexImage() < NO_ERROR) {
417 // something happened!
418 recomputeVisibleRegions = true;
419 return;
420 }
Mathias Agopian96f08192010-06-02 23:28:45 -0700421
Mathias Agopiana67932f2011-04-20 14:20:59 -0700422 mActiveBuffer = mSurfaceTexture->getCurrentBuffer();
423 mSurfaceTexture->getTransformMatrix(mTextureMatrix);
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700424
Mathias Agopiana67932f2011-04-20 14:20:59 -0700425 const Rect crop(mSurfaceTexture->getCurrentCrop());
426 const uint32_t transform(mSurfaceTexture->getCurrentTransform());
Mathias Agopian933389f2011-07-18 16:15:08 -0700427 const uint32_t scalingMode(mSurfaceTexture->getCurrentScalingMode());
428 if ((crop != mCurrentCrop) ||
429 (transform != mCurrentTransform) ||
430 (scalingMode != mCurrentScalingMode))
431 {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700432 mCurrentCrop = crop;
433 mCurrentTransform = transform;
Mathias Agopian933389f2011-07-18 16:15:08 -0700434 mCurrentScalingMode = scalingMode;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700435 mFlinger->invalidateHwcGeometry();
436 }
Mathias Agopianda9584d2010-12-13 18:51:59 -0800437
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700438 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
439 if (oldOpacity != isOpaque()) {
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800440 recomputeVisibleRegions = true;
441 }
442
Mathias Agopiana67932f2011-04-20 14:20:59 -0700443 const GLenum target(mSurfaceTexture->getCurrentTextureTarget());
444 glTexParameterx(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
445 glTexParameterx(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700446
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700447 // update the layer size and release freeze-lock
448 const Layer::State& front(drawingState());
Mathias Agopiana67932f2011-04-20 14:20:59 -0700449
450 // FIXME: mPostedDirtyRegion = dirty & bounds
451 mPostedDirtyRegion.set(front.w, front.h);
452
Mathias Agopian97c602c2011-07-19 15:24:46 -0700453
454 if ((front.w != front.requested_w) ||
455 (front.h != front.requested_h))
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700456 {
Mathias Agopian97c602c2011-07-19 15:24:46 -0700457 // check that we received a buffer of the right size
458 // (Take the buffer's orientation into account)
459 sp<GraphicBuffer> newFrontBuffer(mActiveBuffer);
460 uint32_t bufWidth = newFrontBuffer->getWidth();
461 uint32_t bufHeight = newFrontBuffer->getHeight();
462 if (mCurrentTransform & Transform::ROT_90) {
463 swap(bufWidth, bufHeight);
464 }
465
466 if (isFixedSize() ||
467 (bufWidth == front.requested_w &&
468 bufHeight == front.requested_h))
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700469 {
470 // Here we pretend the transaction happened by updating the
471 // current and drawing states. Drawing state is only accessed
472 // in this thread, no need to have it locked
473 Layer::State& editDraw(mDrawingState);
474 editDraw.w = editDraw.requested_w;
475 editDraw.h = editDraw.requested_h;
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700476
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700477 // We also need to update the current state so that we don't
478 // end-up doing too much work during the next transaction.
479 // NOTE: We actually don't need hold the transaction lock here
480 // because State::w and State::h are only accessed from
481 // this thread
482 Layer::State& editTemp(currentState());
483 editTemp.w = editDraw.w;
484 editTemp.h = editDraw.h;
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700485
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700486 // recompute visible region
487 recomputeVisibleRegions = true;
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700488
Mathias Agopian97c602c2011-07-19 15:24:46 -0700489 // we now have the correct size, unfreeze the screen
490 mFreezeLock.clear();
491 }
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700492
493 LOGD_IF(DEBUG_RESIZE,
494 "lockPageFlip : "
495 " (layer=%p), buffer (%ux%u, tr=%02x), "
496 "requested (%dx%d)",
497 this,
498 bufWidth, bufHeight, mCurrentTransform,
499 front.requested_w, front.requested_h);
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700500 }
Mathias Agopiancaa600c2009-09-16 18:27:24 -0700501 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800502}
503
504void Layer::unlockPageFlip(
505 const Transform& planeTransform, Region& outDirtyRegion)
506{
507 Region dirtyRegion(mPostedDirtyRegion);
508 if (!dirtyRegion.isEmpty()) {
509 mPostedDirtyRegion.clear();
510 // The dirty region is given in the layer's coordinate space
511 // transform the dirty region by the surface's transformation
512 // and the global transformation.
513 const Layer::State& s(drawingState());
514 const Transform tr(planeTransform * s.transform);
515 dirtyRegion = tr.transform(dirtyRegion);
516
517 // At this point, the dirty region is in screen space.
518 // Make sure it's constrained by the visible region (which
519 // is in screen space as well).
520 dirtyRegion.andSelf(visibleRegionScreen);
521 outDirtyRegion.orSelf(dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800522 }
Mathias Agopianc61de172009-11-30 11:15:41 -0800523 if (visibleRegionScreen.isEmpty()) {
524 // an invisible layer should not hold a freeze-lock
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700525 // (because it may never be updated and therefore never release it)
Mathias Agopianc61de172009-11-30 11:15:41 -0800526 mFreezeLock.clear();
527 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800528}
529
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700530void Layer::dump(String8& result, char* buffer, size_t SIZE) const
531{
532 LayerBaseClient::dump(result, buffer, SIZE);
533
Mathias Agopiana67932f2011-04-20 14:20:59 -0700534 sp<const GraphicBuffer> buf0(mActiveBuffer);
535 uint32_t w0=0, h0=0, s0=0, f0=0;
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700536 if (buf0 != 0) {
537 w0 = buf0->getWidth();
538 h0 = buf0->getHeight();
539 s0 = buf0->getStride();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700540 f0 = buf0->format;
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700541 }
542 snprintf(buffer, SIZE,
543 " "
Mathias Agopianad795ba2011-08-08 16:02:13 -0700544 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
Mathias Agopiana67932f2011-04-20 14:20:59 -0700545 " freezeLock=%p, queued-frames=%d\n",
546 mFormat, w0, h0, s0,f0,
547 getFreezeLock().get(), mQueuedFrames);
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700548
549 result.append(buffer);
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700550
Mathias Agopiana67932f2011-04-20 14:20:59 -0700551 if (mSurfaceTexture != 0) {
552 mSurfaceTexture->dump(result, " ", buffer, SIZE);
Mathias Agopian579b3f82010-06-08 19:54:15 -0700553 }
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700554}
555
Mathias Agopiana67932f2011-04-20 14:20:59 -0700556uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700557{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700558 // TODO: should we do something special if mSecure is set?
559 if (mProtectedByApp) {
560 // need a hardware-protected path to external video sink
561 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -0700562 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700563 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700564}
565
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800566// ---------------------------------------------------------------------------
567
568
569}; // namespace android