blob: feb2c5272dbd48b0a4c46b3495ade79a42042455 [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 Agopiane9800c82011-10-16 23:54:25 -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
Jamie Gennisa249f2d2011-09-16 17:31:54 -0700115void Layer::setName(const String8& name) {
116 LayerBase::setName(name);
117 mSurfaceTexture->setName(name);
118}
119
Mathias Agopiana67932f2011-04-20 14:20:59 -0700120sp<ISurface> Layer::createSurface()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800121{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700122 class BSurface : public BnSurface, public LayerCleaner {
123 wp<const Layer> mOwner;
124 virtual sp<ISurfaceTexture> getSurfaceTexture() const {
125 sp<ISurfaceTexture> res;
126 sp<const Layer> that( mOwner.promote() );
127 if (that != NULL) {
128 res = that->mSurfaceTexture;
129 }
130 return res;
131 }
132 public:
133 BSurface(const sp<SurfaceFlinger>& flinger,
134 const sp<Layer>& layer)
135 : LayerCleaner(flinger, layer), mOwner(layer) { }
136 };
137 sp<ISurface> sur(new BSurface(mFlinger, this));
Mathias Agopiana1f47b92011-02-15 19:01:06 -0800138 return sur;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800139}
140
Jamie Gennis582270d2011-08-17 18:19:00 -0700141wp<IBinder> Layer::getSurfaceTextureBinder() const
142{
143 return mSurfaceTexture->asBinder();
144}
145
Mathias Agopianf9d93272009-06-19 17:00:27 -0700146status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800147 PixelFormat format, uint32_t flags)
148{
Mathias Agopian401c2572009-09-23 19:16:27 -0700149 // this surfaces pixel format
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800150 PixelFormatInfo info;
151 status_t err = getPixelFormatInfo(format, &info);
152 if (err) return err;
153
Mathias Agopian401c2572009-09-23 19:16:27 -0700154 // the display's pixel format
155 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopianca99fb82010-04-14 16:43:44 -0700156 uint32_t const maxSurfaceDims = min(
157 hw.getMaxTextureSize(), hw.getMaxViewportDims());
158
159 // never allow a surface larger than what our underlying GL implementation
160 // can handle.
161 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
162 return BAD_VALUE;
163 }
164
Mathias Agopian401c2572009-09-23 19:16:27 -0700165 PixelFormatInfo displayInfo;
166 getPixelFormatInfo(hw.getFormat(), &displayInfo);
Mathias Agopiana4b740e2009-10-05 18:20:39 -0700167 const uint32_t hwFlags = hw.getFlags();
168
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700169 mFormat = format;
Mathias Agopianeff062c2010-08-25 14:59:15 -0700170
Mathias Agopian3330b202009-10-05 17:07:12 -0700171 mSecure = (flags & ISurfaceComposer::eSecure) ? true : false;
Glenn Kasten16f04532011-01-19 15:27:27 -0800172 mProtectedByApp = (flags & ISurfaceComposer::eProtectedByApp) ? true : false;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700173 mOpaqueLayer = (flags & ISurfaceComposer::eOpaque);
174 mCurrentOpacity = getOpacityForFormat(format);
175
176 mSurfaceTexture->setDefaultBufferSize(w, h);
177 mSurfaceTexture->setDefaultBufferFormat(format);
Mathias Agopianca99fb82010-04-14 16:43:44 -0700178
Mathias Agopian401c2572009-09-23 19:16:27 -0700179 // we use the red index
180 int displayRedSize = displayInfo.getSize(PixelFormatInfo::INDEX_RED);
181 int layerRedsize = info.getSize(PixelFormatInfo::INDEX_RED);
182 mNeedsDithering = layerRedsize > displayRedSize;
183
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800184 return NO_ERROR;
185}
186
Mathias Agopiana350ff92010-08-10 17:14:02 -0700187void Layer::setGeometry(hwc_layer_t* hwcl)
188{
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700189 LayerBaseClient::setGeometry(hwcl);
190
191 hwcl->flags &= ~HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700192
193 // we can't do alpha-fade with the hwc HAL
194 const State& s(drawingState());
195 if (s.alpha < 0xFF) {
196 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700197 }
198
Mathias Agopian29a367b2011-07-12 14:51:45 -0700199 /*
200 * Transformations are applied in this order:
201 * 1) buffer orientation/flip/mirror
202 * 2) state transformation (window manager)
203 * 3) layer orientation (screen orientation)
Mathias Agopiand992db32011-08-18 18:31:00 -0700204 * mTransform is already the composition of (2) and (3)
Mathias Agopian29a367b2011-07-12 14:51:45 -0700205 * (NOTE: the matrices are multiplied in reverse order)
206 */
207
208 const Transform bufferOrientation(mCurrentTransform);
Mathias Agopiand992db32011-08-18 18:31:00 -0700209 const Transform tr(mTransform * bufferOrientation);
Mathias Agopian29a367b2011-07-12 14:51:45 -0700210
211 // this gives us only the "orientation" component of the transform
212 const uint32_t finalTransform = tr.getOrientation();
213
Mathias Agopiana350ff92010-08-10 17:14:02 -0700214 // we can only handle simple transformation
Mathias Agopian29a367b2011-07-12 14:51:45 -0700215 if (finalTransform & Transform::ROT_INVALID) {
Mathias Agopiana350ff92010-08-10 17:14:02 -0700216 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700217 } else {
218 hwcl->transform = finalTransform;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700219 }
Mathias Agopianc7f33812011-08-30 15:02:41 -0700220
221 if (isCropped()) {
222 hwcl->sourceCrop.left = mCurrentCrop.left;
223 hwcl->sourceCrop.top = mCurrentCrop.top;
224 hwcl->sourceCrop.right = mCurrentCrop.right;
225 hwcl->sourceCrop.bottom = mCurrentCrop.bottom;
226 } else {
227 const sp<GraphicBuffer>& buffer(mActiveBuffer);
228 hwcl->sourceCrop.left = 0;
229 hwcl->sourceCrop.top = 0;
230 if (buffer != NULL) {
231 hwcl->sourceCrop.right = buffer->width;
232 hwcl->sourceCrop.bottom = buffer->height;
233 } else {
234 hwcl->sourceCrop.right = mTransformedBounds.width();
235 hwcl->sourceCrop.bottom = mTransformedBounds.height();
236 }
237 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700238}
239
240void Layer::setPerFrameData(hwc_layer_t* hwcl) {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700241 const sp<GraphicBuffer>& buffer(mActiveBuffer);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700242 if (buffer == NULL) {
Mathias Agopianda9584d2010-12-13 18:51:59 -0800243 // this can happen if the client never drew into this layer yet,
244 // or if we ran out of memory. In that case, don't let
245 // HWC handle it.
246 hwcl->flags |= HWC_SKIP_LAYER;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700247 hwcl->handle = NULL;
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700248 } else {
249 hwcl->handle = buffer->handle;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700250 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700251}
252
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800253void Layer::onDraw(const Region& clip) const
254{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700255 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800256 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -0700257 // in fact never been drawn into. This happens frequently with
258 // SurfaceView because the WindowManager can't know when the client
259 // has drawn the first time.
260
261 // If there is nothing under us, we paint the screen in black, otherwise
262 // we just skip this update.
263
264 // figure out if there is something below us
265 Region under;
Mathias Agopianf7ae69d2011-08-23 12:34:29 -0700266 const SurfaceFlinger::LayerVector& drawingLayers(
267 mFlinger->mDrawingState.layersSortedByZ);
Mathias Agopian179169e2010-05-06 20:21:45 -0700268 const size_t count = drawingLayers.size();
269 for (size_t i=0 ; i<count ; ++i) {
270 const sp<LayerBase>& layer(drawingLayers[i]);
271 if (layer.get() == static_cast<LayerBase const*>(this))
272 break;
273 under.orSelf(layer->visibleRegionScreen);
274 }
275 // if not everything below us is covered, we plug the holes!
276 Region holes(clip.subtract(under));
277 if (!holes.isEmpty()) {
Mathias Agopian0a917752010-06-14 21:20:00 -0700278 clearWithOpenGL(holes, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -0700279 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800280 return;
281 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700282
Jamie Gennis9575f602011-10-07 14:51:16 -0700283 GLenum target = GL_TEXTURE_EXTERNAL_OES;
284 if (!isProtected()) {
285 glBindTexture(target, mTextureName);
286 if (getFiltering() || needsFiltering() || isFixedSize() || isCropped()) {
287 // TODO: we could be more subtle with isFixedSize()
288 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
289 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
290 } else {
291 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
292 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
293 }
294 glEnable(target);
295 glMatrixMode(GL_TEXTURE);
296 glLoadMatrixf(mTextureMatrix);
297 glMatrixMode(GL_MODELVIEW);
Mathias Agopiana67932f2011-04-20 14:20:59 -0700298 } else {
Jamie Gennis9575f602011-10-07 14:51:16 -0700299 target = GL_TEXTURE_2D;
300 glBindTexture(target, mFlinger->getProtectedTexName());
301 glEnable(target);
302 glMatrixMode(GL_TEXTURE);
303 glLoadIdentity();
304 glMatrixMode(GL_MODELVIEW);
Mathias Agopiana67932f2011-04-20 14:20:59 -0700305 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700306
307 drawWithOpenGL(clip);
308
309 glDisable(target);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800310}
311
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800312// As documented in libhardware header, formats in the range
313// 0x100 - 0x1FF are specific to the HAL implementation, and
314// are known to have no alpha channel
315// TODO: move definition for device-specific range into
316// hardware.h, instead of using hard-coded values here.
317#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
318
Mathias Agopiana67932f2011-04-20 14:20:59 -0700319bool Layer::getOpacityForFormat(uint32_t format)
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800320{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700321 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
322 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800323 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700324 PixelFormatInfo info;
325 status_t err = getPixelFormatInfo(PixelFormat(format), &info);
326 // in case of error (unknown format), we assume no blending
327 return (err || info.h_alpha <= info.l_alpha);
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800328}
329
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800330
Mathias Agopiana67932f2011-04-20 14:20:59 -0700331bool Layer::isOpaque() const
Mathias Agopiana7f66922010-05-26 22:08:52 -0700332{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700333 // if we don't have a buffer yet, we're translucent regardless of the
334 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700335 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700336 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700337 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700338
339 // if the layer has the opaque flag, then we're always opaque,
340 // otherwise we use the current buffer's format.
341 return mOpaqueLayer || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -0700342}
343
Jamie Gennis7a4d0df2011-03-09 17:05:02 -0800344bool Layer::isProtected() const
345{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700346 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -0800347 return (activeBuffer != 0) &&
348 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
349}
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700350
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800351uint32_t Layer::doTransaction(uint32_t flags)
352{
353 const Layer::State& front(drawingState());
354 const Layer::State& temp(currentState());
355
Mathias Agopiana138f892010-05-21 17:24:35 -0700356 const bool sizeChanged = (front.requested_w != temp.requested_w) ||
357 (front.requested_h != temp.requested_h);
358
359 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700360 // the size changed, we need to ask our client to request a new buffer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800361 LOGD_IF(DEBUG_RESIZE,
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700362 "doTransaction: "
Mathias Agopiana67932f2011-04-20 14:20:59 -0700363 "resize (layer=%p), requested (%dx%d), drawing (%d,%d), "
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700364 "scalingMode=%d",
Mathias Agopiana138f892010-05-21 17:24:35 -0700365 this,
366 int(temp.requested_w), int(temp.requested_h),
Mathias Agopiana67932f2011-04-20 14:20:59 -0700367 int(front.requested_w), int(front.requested_h),
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700368 mCurrentScalingMode);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800369
Mathias Agopiana138f892010-05-21 17:24:35 -0700370 if (!isFixedSize()) {
371 // we're being resized and there is a freeze display request,
372 // acquire a freeze lock, so that the screen stays put
373 // until we've redrawn at the new size; this is to avoid
374 // glitches upon orientation changes.
375 if (mFlinger->hasFreezeRequest()) {
376 // if the surface is hidden, don't try to acquire the
377 // freeze lock, since hidden surfaces may never redraw
378 if (!(front.flags & ISurfaceComposer::eLayerHidden)) {
379 mFreezeLock = mFlinger->getFreezeLock();
380 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800381 }
Mathias Agopiana138f892010-05-21 17:24:35 -0700382
383 // this will make sure LayerBase::doTransaction doesn't update
384 // the drawing state's size
385 Layer::State& editDraw(mDrawingState);
386 editDraw.requested_w = temp.requested_w;
387 editDraw.requested_h = temp.requested_h;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800388 }
Jamie Gennis2a0d5b62011-09-26 16:54:44 -0700389
390 // record the new size, form this point on, when the client request
391 // a buffer, it'll get the new size.
392 mSurfaceTexture->setDefaultBufferSize(temp.requested_w,
393 temp.requested_h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800394 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700395
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800396 if (temp.sequence != front.sequence) {
397 if (temp.flags & ISurfaceComposer::eLayerHidden || temp.alpha == 0) {
398 // this surface is now hidden, so it shouldn't hold a freeze lock
399 // (it may never redraw, which is fine if it is hidden)
400 mFreezeLock.clear();
401 }
402 }
403
404 return LayerBase::doTransaction(flags);
405}
406
Mathias Agopiana138f892010-05-21 17:24:35 -0700407bool Layer::isFixedSize() const {
Mathias Agopian933389f2011-07-18 16:15:08 -0700408 return mCurrentScalingMode != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700409}
410
411bool Layer::isCropped() const {
412 return !mCurrentCrop.isEmpty();
413}
414
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800415// ----------------------------------------------------------------------------
416// pageflip handling...
417// ----------------------------------------------------------------------------
418
419void Layer::lockPageFlip(bool& recomputeVisibleRegions)
420{
Jamie Gennis3d8063b2011-06-26 18:27:47 -0700421 if (mQueuedFrames > 0) {
Jamie Gennis351a5132011-09-14 18:23:37 -0700422 // Capture the old state of the layer for comparisons later
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700423 const bool oldOpacity = isOpaque();
Jamie Gennis351a5132011-09-14 18:23:37 -0700424 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700425
Jamie Gennis3d8063b2011-06-26 18:27:47 -0700426 // signal another event if we have more frames pending
427 if (android_atomic_dec(&mQueuedFrames) > 1) {
428 mFlinger->signalEvent();
429 }
430
Mathias Agopiana67932f2011-04-20 14:20:59 -0700431 if (mSurfaceTexture->updateTexImage() < NO_ERROR) {
432 // something happened!
433 recomputeVisibleRegions = true;
434 return;
435 }
Mathias Agopian96f08192010-06-02 23:28:45 -0700436
Jamie Gennis351a5132011-09-14 18:23:37 -0700437 // update the active buffer
438 mActiveBuffer = mSurfaceTexture->getCurrentBuffer();
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700439
Mathias Agopiana67932f2011-04-20 14:20:59 -0700440 const Rect crop(mSurfaceTexture->getCurrentCrop());
441 const uint32_t transform(mSurfaceTexture->getCurrentTransform());
Mathias Agopian933389f2011-07-18 16:15:08 -0700442 const uint32_t scalingMode(mSurfaceTexture->getCurrentScalingMode());
443 if ((crop != mCurrentCrop) ||
444 (transform != mCurrentTransform) ||
445 (scalingMode != mCurrentScalingMode))
446 {
Mathias Agopiana67932f2011-04-20 14:20:59 -0700447 mCurrentCrop = crop;
448 mCurrentTransform = transform;
Mathias Agopian933389f2011-07-18 16:15:08 -0700449 mCurrentScalingMode = scalingMode;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700450 mFlinger->invalidateHwcGeometry();
451 }
Mathias Agopianda9584d2010-12-13 18:51:59 -0800452
Mathias Agopianc7f33812011-08-30 15:02:41 -0700453 GLfloat textureMatrix[16];
454 mSurfaceTexture->getTransformMatrix(textureMatrix);
455 if (memcmp(textureMatrix, mTextureMatrix, sizeof(textureMatrix))) {
456 memcpy(mTextureMatrix, textureMatrix, sizeof(textureMatrix));
457 mFlinger->invalidateHwcGeometry();
458 }
459
Jamie Gennis351a5132011-09-14 18:23:37 -0700460 uint32_t bufWidth = mActiveBuffer->getWidth();
461 uint32_t bufHeight = mActiveBuffer->getHeight();
462 if (oldActiveBuffer != NULL) {
463 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
464 bufHeight != uint32_t(oldActiveBuffer->height)) {
Mathias Agopianc7f33812011-08-30 15:02:41 -0700465 mFlinger->invalidateHwcGeometry();
466 }
467 }
468
Jamie Gennis351a5132011-09-14 18:23:37 -0700469 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
Jamie Gennisdb5230f2011-07-28 14:54:07 -0700470 if (oldOpacity != isOpaque()) {
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800471 recomputeVisibleRegions = true;
472 }
473
Mathias Agopianf7ae69d2011-08-23 12:34:29 -0700474 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
475 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700476
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700477 // update the layer size and release freeze-lock
478 const Layer::State& front(drawingState());
Mathias Agopiana67932f2011-04-20 14:20:59 -0700479
480 // FIXME: mPostedDirtyRegion = dirty & bounds
481 mPostedDirtyRegion.set(front.w, front.h);
482
Mathias Agopian97c602c2011-07-19 15:24:46 -0700483 if ((front.w != front.requested_w) ||
484 (front.h != front.requested_h))
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700485 {
Mathias Agopian97c602c2011-07-19 15:24:46 -0700486 // check that we received a buffer of the right size
487 // (Take the buffer's orientation into account)
Mathias Agopian97c602c2011-07-19 15:24:46 -0700488 if (mCurrentTransform & Transform::ROT_90) {
489 swap(bufWidth, bufHeight);
490 }
491
492 if (isFixedSize() ||
493 (bufWidth == front.requested_w &&
494 bufHeight == front.requested_h))
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700495 {
496 // Here we pretend the transaction happened by updating the
497 // current and drawing states. Drawing state is only accessed
498 // in this thread, no need to have it locked
499 Layer::State& editDraw(mDrawingState);
500 editDraw.w = editDraw.requested_w;
501 editDraw.h = editDraw.requested_h;
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700502
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700503 // We also need to update the current state so that we don't
504 // end-up doing too much work during the next transaction.
505 // NOTE: We actually don't need hold the transaction lock here
506 // because State::w and State::h are only accessed from
507 // this thread
508 Layer::State& editTemp(currentState());
509 editTemp.w = editDraw.w;
510 editTemp.h = editDraw.h;
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700511
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700512 // recompute visible region
513 recomputeVisibleRegions = true;
Mathias Agopiand343e3d2010-03-15 18:15:20 -0700514
Mathias Agopian97c602c2011-07-19 15:24:46 -0700515 // we now have the correct size, unfreeze the screen
516 mFreezeLock.clear();
517 }
Mathias Agopian3fbce7c2011-07-25 19:56:08 -0700518
519 LOGD_IF(DEBUG_RESIZE,
520 "lockPageFlip : "
521 " (layer=%p), buffer (%ux%u, tr=%02x), "
522 "requested (%dx%d)",
523 this,
524 bufWidth, bufHeight, mCurrentTransform,
525 front.requested_w, front.requested_h);
Mathias Agopiandf3e0b92009-09-30 14:07:22 -0700526 }
Mathias Agopiancaa600c2009-09-16 18:27:24 -0700527 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800528}
529
530void Layer::unlockPageFlip(
531 const Transform& planeTransform, Region& outDirtyRegion)
532{
533 Region dirtyRegion(mPostedDirtyRegion);
534 if (!dirtyRegion.isEmpty()) {
535 mPostedDirtyRegion.clear();
536 // The dirty region is given in the layer's coordinate space
537 // transform the dirty region by the surface's transformation
538 // and the global transformation.
539 const Layer::State& s(drawingState());
540 const Transform tr(planeTransform * s.transform);
541 dirtyRegion = tr.transform(dirtyRegion);
542
543 // At this point, the dirty region is in screen space.
544 // Make sure it's constrained by the visible region (which
545 // is in screen space as well).
546 dirtyRegion.andSelf(visibleRegionScreen);
547 outDirtyRegion.orSelf(dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800548 }
Mathias Agopianc61de172009-11-30 11:15:41 -0800549 if (visibleRegionScreen.isEmpty()) {
550 // an invisible layer should not hold a freeze-lock
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700551 // (because it may never be updated and therefore never release it)
Mathias Agopianc61de172009-11-30 11:15:41 -0800552 mFreezeLock.clear();
553 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800554}
555
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700556void Layer::dump(String8& result, char* buffer, size_t SIZE) const
557{
558 LayerBaseClient::dump(result, buffer, SIZE);
559
Mathias Agopiana67932f2011-04-20 14:20:59 -0700560 sp<const GraphicBuffer> buf0(mActiveBuffer);
561 uint32_t w0=0, h0=0, s0=0, f0=0;
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700562 if (buf0 != 0) {
563 w0 = buf0->getWidth();
564 h0 = buf0->getHeight();
565 s0 = buf0->getStride();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700566 f0 = buf0->format;
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700567 }
568 snprintf(buffer, SIZE,
569 " "
Mathias Agopianad795ba2011-08-08 16:02:13 -0700570 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
Mathias Agopiana4583642011-08-23 18:03:18 -0700571 " freezeLock=%p, transform-hint=0x%02x, queued-frames=%d\n",
Mathias Agopiana67932f2011-04-20 14:20:59 -0700572 mFormat, w0, h0, s0,f0,
Mathias Agopiana4583642011-08-23 18:03:18 -0700573 getFreezeLock().get(), getTransformHint(), mQueuedFrames);
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700574
575 result.append(buffer);
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700576
Mathias Agopiana67932f2011-04-20 14:20:59 -0700577 if (mSurfaceTexture != 0) {
578 mSurfaceTexture->dump(result, " ", buffer, SIZE);
Mathias Agopian579b3f82010-06-08 19:54:15 -0700579 }
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700580}
581
Mathias Agopiana67932f2011-04-20 14:20:59 -0700582uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700583{
Mathias Agopiana67932f2011-04-20 14:20:59 -0700584 // TODO: should we do something special if mSecure is set?
585 if (mProtectedByApp) {
586 // need a hardware-protected path to external video sink
587 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -0700588 }
Jamie Gennis3599bf22011-08-10 11:48:07 -0700589 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700590 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700591}
592
Mathias Agopiana4583642011-08-23 18:03:18 -0700593uint32_t Layer::getTransformHint() const {
594 uint32_t orientation = 0;
595 if (!mFlinger->mDebugDisableTransformHint) {
Jamie Gennis8d91b422011-09-23 15:54:34 -0700596 orientation = getPlaneOrientation();
Mathias Agopiana4583642011-08-23 18:03:18 -0700597 if (orientation & Transform::ROT_INVALID) {
598 orientation = 0;
599 }
600 }
601 return orientation;
602}
603
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800604// ---------------------------------------------------------------------------
605
606
607}; // namespace android