blob: d4c4b1f93652e56c81f6cc62ce2095ddecd2276a [file] [log] [blame]
The Android Open Source Project9066cfe2009-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 Project9066cfe2009-03-03 19:31:44 -080017#include <stdlib.h>
18#include <stdint.h>
19#include <sys/types.h>
20
Mathias Agopian7bb843c2011-04-20 14:20:59 -070021#include <cutils/compiler.h>
Mathias Agopian1473f462009-04-10 14:24:30 -070022#include <cutils/native_handle.h>
Mathias Agopian7bb843c2011-04-20 14:20:59 -070023#include <cutils/properties.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
25#include <utils/Errors.h>
26#include <utils/Log.h>
27#include <utils/StopWatch.h>
28
Mathias Agopian6950e422009-10-05 17:07:12 -070029#include <ui/GraphicBuffer.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030#include <ui/PixelFormat.h>
Mathias Agopian000479f2010-02-09 17:46:37 -080031
32#include <surfaceflinger/Surface.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34#include "clz.h"
Mathias Agopian7bb843c2011-04-20 14:20:59 -070035#include "DisplayHardware/DisplayHardware.h"
36#include "DisplayHardware/HWComposer.h"
Mathias Agopian781953d2010-06-25 18:02:21 -070037#include "GLExtensions.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038#include "Layer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039#include "SurfaceFlinger.h"
Mathias Agopian7bb843c2011-04-20 14:20:59 -070040#include "SurfaceTextureLayer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
42#define DEBUG_RESIZE 0
43
44
45namespace android {
46
47// ---------------------------------------------------------------------------
48
Mathias Agopian593c05c2010-06-02 23:28:45 -070049Layer::Layer(SurfaceFlinger* flinger,
50 DisplayID display, const sp<Client>& client)
51 : LayerBaseClient(flinger, display, client),
Mathias Agopian7bb843c2011-04-20 14:20:59 -070052 mTextureName(-1U),
53 mQueuedFrames(0),
54 mCurrentTransform(0),
Mathias Agopianff86f372011-07-18 16:15:08 -070055 mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
Mathias Agopian7bb843c2011-04-20 14:20:59 -070056 mCurrentOpacity(true),
Mathias Agopianccf94df2011-03-11 17:01:07 -080057 mFormat(PIXEL_FORMAT_NONE),
Mathias Agopian781953d2010-06-25 18:02:21 -070058 mGLExtensions(GLExtensions::getInstance()),
Mathias Agopian7bb843c2011-04-20 14:20:59 -070059 mOpaqueLayer(true),
Mathias Agopian9f2c4fd2010-05-10 20:06:11 -070060 mNeedsDithering(false),
Mathias Agopian7623da42010-06-01 15:12:58 -070061 mSecure(false),
Mathias Agopianff86f372011-07-18 16:15:08 -070062 mProtectedByApp(false)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063{
Mathias Agopian7bb843c2011-04-20 14:20:59 -070064 mCurrentCrop.makeInvalid();
65 glGenTextures(1, &mTextureName);
Mathias Agopian9f2c4fd2010-05-10 20:06:11 -070066}
67
Mathias Agopian7bb843c2011-04-20 14:20:59 -070068void Layer::onFirstRef()
Mathias Agopian593c05c2010-06-02 23:28:45 -070069{
Mathias Agopian7bb843c2011-04-20 14:20:59 -070070 LayerBaseClient::onFirstRef();
Mathias Agopianeb99f0d2011-06-12 18:05:53 -070071
Mathias Agopian7bb843c2011-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 Agopian7623da42010-06-01 15:12:58 -070087}
88
Mathias Agopian7bb843c2011-04-20 14:20:59 -070089Layer::~Layer()
Mathias Agopian7623da42010-06-01 15:12:58 -070090{
Mathias Agopian0ab84ef2011-10-13 16:02:48 -070091 mFlinger->postMessageAsync(
92 new SurfaceFlinger::MessageDestroyGLTexture(mTextureName) );
Mathias Agopian593c05c2010-06-02 23:28:45 -070093}
94
Mathias Agopian7bb843c2011-04-20 14:20:59 -070095void Layer::onFrameQueued() {
Jamie Gennisbd5404d2011-06-26 18:27:47 -070096 android_atomic_inc(&mQueuedFrames);
97 mFlinger->signalEvent();
Mathias Agopian5e140102010-06-08 19:54:15 -070098}
99
Mathias Agopian9f2c4fd2010-05-10 20:06:11 -0700100// called with SurfaceFlinger::mStateLock as soon as the layer is entered
101// in the purgatory list
102void Layer::onRemoved()
103{
Jamie Gennisa616d882011-07-30 14:33:49 -0700104 mSurfaceTexture->abandon();
Mathias Agopian248b5bd2009-09-10 19:41:18 -0700105}
Mathias Agopian9779b222009-09-07 16:32:45 -0700106
Jamie Gennis5b315da2011-09-16 17:31:54 -0700107void Layer::setName(const String8& name) {
108 LayerBase::setName(name);
109 mSurfaceTexture->setName(name);
110}
111
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700112sp<ISurface> Layer::createSurface()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700114 class BSurface : public BnSurface, public LayerCleaner {
115 wp<const Layer> mOwner;
116 virtual sp<ISurfaceTexture> getSurfaceTexture() const {
117 sp<ISurfaceTexture> res;
118 sp<const Layer> that( mOwner.promote() );
119 if (that != NULL) {
120 res = that->mSurfaceTexture;
121 }
122 return res;
123 }
124 public:
125 BSurface(const sp<SurfaceFlinger>& flinger,
126 const sp<Layer>& layer)
127 : LayerCleaner(flinger, layer), mOwner(layer) { }
128 };
129 sp<ISurface> sur(new BSurface(mFlinger, this));
Mathias Agopian1b0114f2011-02-15 19:01:06 -0800130 return sur;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131}
132
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700133wp<IBinder> Layer::getSurfaceTextureBinder() const
134{
135 return mSurfaceTexture->asBinder();
136}
137
Mathias Agopian6edf5af2009-06-19 17:00:27 -0700138status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 PixelFormat format, uint32_t flags)
140{
Mathias Agopiancc934762009-09-23 19:16:27 -0700141 // this surfaces pixel format
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 PixelFormatInfo info;
143 status_t err = getPixelFormatInfo(format, &info);
144 if (err) return err;
145
Mathias Agopiancc934762009-09-23 19:16:27 -0700146 // the display's pixel format
147 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian967dce32010-04-14 16:43:44 -0700148 uint32_t const maxSurfaceDims = min(
149 hw.getMaxTextureSize(), hw.getMaxViewportDims());
150
151 // never allow a surface larger than what our underlying GL implementation
152 // can handle.
153 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
154 return BAD_VALUE;
155 }
156
Mathias Agopiancc934762009-09-23 19:16:27 -0700157 PixelFormatInfo displayInfo;
158 getPixelFormatInfo(hw.getFormat(), &displayInfo);
Mathias Agopian351a7072009-10-05 18:20:39 -0700159 const uint32_t hwFlags = hw.getFlags();
160
Mathias Agopian9779b222009-09-07 16:32:45 -0700161 mFormat = format;
Mathias Agopianc51114f2010-08-25 14:59:15 -0700162
Mathias Agopian6950e422009-10-05 17:07:12 -0700163 mSecure = (flags & ISurfaceComposer::eSecure) ? true : false;
Glenn Kastend6f5bde2011-01-19 15:27:27 -0800164 mProtectedByApp = (flags & ISurfaceComposer::eProtectedByApp) ? true : false;
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700165 mOpaqueLayer = (flags & ISurfaceComposer::eOpaque);
166 mCurrentOpacity = getOpacityForFormat(format);
167
168 mSurfaceTexture->setDefaultBufferSize(w, h);
169 mSurfaceTexture->setDefaultBufferFormat(format);
Mathias Agopian967dce32010-04-14 16:43:44 -0700170
Mathias Agopiancc934762009-09-23 19:16:27 -0700171 // we use the red index
172 int displayRedSize = displayInfo.getSize(PixelFormatInfo::INDEX_RED);
173 int layerRedsize = info.getSize(PixelFormatInfo::INDEX_RED);
174 mNeedsDithering = layerRedsize > displayRedSize;
175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 return NO_ERROR;
177}
178
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700179void Layer::setGeometry(hwc_layer_t* hwcl)
180{
Mathias Agopian0fb1a942011-08-02 15:51:37 -0700181 LayerBaseClient::setGeometry(hwcl);
182
183 hwcl->flags &= ~HWC_SKIP_LAYER;
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700184
185 // we can't do alpha-fade with the hwc HAL
186 const State& s(drawingState());
187 if (s.alpha < 0xFF) {
188 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700189 }
190
Mathias Agopian9e37abb2011-07-12 14:51:45 -0700191 /*
192 * Transformations are applied in this order:
193 * 1) buffer orientation/flip/mirror
194 * 2) state transformation (window manager)
195 * 3) layer orientation (screen orientation)
Mathias Agopian3f883272011-08-18 18:31:00 -0700196 * mTransform is already the composition of (2) and (3)
Mathias Agopian9e37abb2011-07-12 14:51:45 -0700197 * (NOTE: the matrices are multiplied in reverse order)
198 */
199
200 const Transform bufferOrientation(mCurrentTransform);
Mathias Agopian3f883272011-08-18 18:31:00 -0700201 const Transform tr(mTransform * bufferOrientation);
Mathias Agopian9e37abb2011-07-12 14:51:45 -0700202
203 // this gives us only the "orientation" component of the transform
204 const uint32_t finalTransform = tr.getOrientation();
205
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700206 // we can only handle simple transformation
Mathias Agopian9e37abb2011-07-12 14:51:45 -0700207 if (finalTransform & Transform::ROT_INVALID) {
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700208 hwcl->flags = HWC_SKIP_LAYER;
Mathias Agopian0fb1a942011-08-02 15:51:37 -0700209 } else {
210 hwcl->transform = finalTransform;
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700211 }
Mathias Agopiance8e0ba2011-08-30 15:02:41 -0700212
213 if (isCropped()) {
214 hwcl->sourceCrop.left = mCurrentCrop.left;
215 hwcl->sourceCrop.top = mCurrentCrop.top;
216 hwcl->sourceCrop.right = mCurrentCrop.right;
217 hwcl->sourceCrop.bottom = mCurrentCrop.bottom;
218 } else {
219 const sp<GraphicBuffer>& buffer(mActiveBuffer);
220 hwcl->sourceCrop.left = 0;
221 hwcl->sourceCrop.top = 0;
222 if (buffer != NULL) {
223 hwcl->sourceCrop.right = buffer->width;
224 hwcl->sourceCrop.bottom = buffer->height;
225 } else {
226 hwcl->sourceCrop.right = mTransformedBounds.width();
227 hwcl->sourceCrop.bottom = mTransformedBounds.height();
228 }
229 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700230}
231
232void Layer::setPerFrameData(hwc_layer_t* hwcl) {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700233 const sp<GraphicBuffer>& buffer(mActiveBuffer);
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700234 if (buffer == NULL) {
Mathias Agopian575eaf52010-12-13 18:51:59 -0800235 // this can happen if the client never drew into this layer yet,
236 // or if we ran out of memory. In that case, don't let
237 // HWC handle it.
238 hwcl->flags |= HWC_SKIP_LAYER;
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700239 hwcl->handle = NULL;
Mathias Agopian0fb1a942011-08-02 15:51:37 -0700240 } else {
241 hwcl->handle = buffer->handle;
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700242 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700243}
244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245void Layer::onDraw(const Region& clip) const
246{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700247 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 // the texture has not been created yet, this Layer has
Mathias Agopian2df6f512010-05-06 20:21:45 -0700249 // in fact never been drawn into. This happens frequently with
250 // SurfaceView because the WindowManager can't know when the client
251 // has drawn the first time.
252
253 // If there is nothing under us, we paint the screen in black, otherwise
254 // we just skip this update.
255
256 // figure out if there is something below us
257 Region under;
Mathias Agopian56e8d672011-08-23 12:34:29 -0700258 const SurfaceFlinger::LayerVector& drawingLayers(
259 mFlinger->mDrawingState.layersSortedByZ);
Mathias Agopian2df6f512010-05-06 20:21:45 -0700260 const size_t count = drawingLayers.size();
261 for (size_t i=0 ; i<count ; ++i) {
262 const sp<LayerBase>& layer(drawingLayers[i]);
263 if (layer.get() == static_cast<LayerBase const*>(this))
264 break;
265 under.orSelf(layer->visibleRegionScreen);
266 }
267 // if not everything below us is covered, we plug the holes!
268 Region holes(clip.subtract(under));
269 if (!holes.isEmpty()) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700270 clearWithOpenGL(holes, 0, 0, 0, 1);
Mathias Agopian2df6f512010-05-06 20:21:45 -0700271 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 return;
273 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700274
Jamie Gennis830d0832011-10-07 14:51:16 -0700275 if (!isProtected()) {
Mathias Agopian9044ef02011-10-18 14:49:27 -0700276 glBindTexture(GL_TEXTURE_EXTERNAL_OES, mTextureName);
277 GLenum filter = GL_NEAREST;
Jamie Gennis830d0832011-10-07 14:51:16 -0700278 if (getFiltering() || needsFiltering() || isFixedSize() || isCropped()) {
279 // TODO: we could be more subtle with isFixedSize()
Mathias Agopian9044ef02011-10-18 14:49:27 -0700280 filter = GL_LINEAR;
Jamie Gennis830d0832011-10-07 14:51:16 -0700281 }
Mathias Agopian9044ef02011-10-18 14:49:27 -0700282 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MAG_FILTER, filter);
283 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MIN_FILTER, filter);
Jamie Gennis830d0832011-10-07 14:51:16 -0700284 glMatrixMode(GL_TEXTURE);
285 glLoadMatrixf(mTextureMatrix);
286 glMatrixMode(GL_MODELVIEW);
Mathias Agopian9044ef02011-10-18 14:49:27 -0700287 glDisable(GL_TEXTURE_2D);
Xavier Ducrohetf9e45512011-10-21 16:18:48 -0700288 glEnable(GL_TEXTURE_EXTERNAL_OES);
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700289 } else {
Mathias Agopian9044ef02011-10-18 14:49:27 -0700290 glBindTexture(GL_TEXTURE_2D, mFlinger->getProtectedTexName());
Jamie Gennis830d0832011-10-07 14:51:16 -0700291 glMatrixMode(GL_TEXTURE);
292 glLoadIdentity();
293 glMatrixMode(GL_MODELVIEW);
Mathias Agopian9044ef02011-10-18 14:49:27 -0700294 glDisable(GL_TEXTURE_EXTERNAL_OES);
295 glEnable(GL_TEXTURE_2D);
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700296 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700297
298 drawWithOpenGL(clip);
299
Mathias Agopian9044ef02011-10-18 14:49:27 -0700300 glDisable(GL_TEXTURE_EXTERNAL_OES);
301 glDisable(GL_TEXTURE_2D);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302}
303
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800304// As documented in libhardware header, formats in the range
305// 0x100 - 0x1FF are specific to the HAL implementation, and
306// are known to have no alpha channel
307// TODO: move definition for device-specific range into
308// hardware.h, instead of using hard-coded values here.
309#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
310
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700311bool Layer::getOpacityForFormat(uint32_t format)
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800312{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700313 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
314 return true;
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800315 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700316 PixelFormatInfo info;
317 status_t err = getPixelFormatInfo(PixelFormat(format), &info);
318 // in case of error (unknown format), we assume no blending
319 return (err || info.h_alpha <= info.l_alpha);
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800320}
321
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800322
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700323bool Layer::isOpaque() const
Mathias Agopian92377032010-05-26 22:08:52 -0700324{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700325 // if we don't have a buffer yet, we're translucent regardless of the
326 // layer's opaque flag.
Jamie Gennisc0545702011-07-28 14:54:07 -0700327 if (mActiveBuffer == 0) {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700328 return false;
Jamie Gennisc0545702011-07-28 14:54:07 -0700329 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700330
331 // if the layer has the opaque flag, then we're always opaque,
332 // otherwise we use the current buffer's format.
333 return mOpaqueLayer || mCurrentOpacity;
Mathias Agopian92377032010-05-26 22:08:52 -0700334}
335
Jamie Gennisf72606c2011-03-09 17:05:02 -0800336bool Layer::isProtected() const
337{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700338 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennisf72606c2011-03-09 17:05:02 -0800339 return (activeBuffer != 0) &&
340 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
341}
Mathias Agopian59751db2010-05-07 15:58:44 -0700342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343uint32_t Layer::doTransaction(uint32_t flags)
344{
345 const Layer::State& front(drawingState());
346 const Layer::State& temp(currentState());
347
Mathias Agopian2be352a2010-05-21 17:24:35 -0700348 const bool sizeChanged = (front.requested_w != temp.requested_w) ||
349 (front.requested_h != temp.requested_h);
350
351 if (sizeChanged) {
Mathias Agopian9779b222009-09-07 16:32:45 -0700352 // the size changed, we need to ask our client to request a new buffer
Steve Block5baa3a62011-12-20 16:23:08 +0000353 ALOGD_IF(DEBUG_RESIZE,
Mathias Agopianf3503c22011-07-25 19:56:08 -0700354 "doTransaction: "
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700355 "resize (layer=%p), requested (%dx%d), drawing (%d,%d), "
Mathias Agopianf3503c22011-07-25 19:56:08 -0700356 "scalingMode=%d",
Mathias Agopian2be352a2010-05-21 17:24:35 -0700357 this,
358 int(temp.requested_w), int(temp.requested_h),
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700359 int(front.requested_w), int(front.requested_h),
Mathias Agopianf3503c22011-07-25 19:56:08 -0700360 mCurrentScalingMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361
Mathias Agopian2be352a2010-05-21 17:24:35 -0700362 if (!isFixedSize()) {
Mathias Agopian2be352a2010-05-21 17:24:35 -0700363 // this will make sure LayerBase::doTransaction doesn't update
364 // the drawing state's size
365 Layer::State& editDraw(mDrawingState);
366 editDraw.requested_w = temp.requested_w;
367 editDraw.requested_h = temp.requested_h;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 }
Jamie Gennis3a232122011-09-26 16:54:44 -0700369
370 // record the new size, form this point on, when the client request
371 // a buffer, it'll get the new size.
372 mSurfaceTexture->setDefaultBufferSize(temp.requested_w,
373 temp.requested_h);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 }
Mathias Agopian9779b222009-09-07 16:32:45 -0700375
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 return LayerBase::doTransaction(flags);
377}
378
Mathias Agopian2be352a2010-05-21 17:24:35 -0700379bool Layer::isFixedSize() const {
Mathias Agopianff86f372011-07-18 16:15:08 -0700380 return mCurrentScalingMode != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700381}
382
383bool Layer::isCropped() const {
384 return !mCurrentCrop.isEmpty();
385}
386
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387// ----------------------------------------------------------------------------
388// pageflip handling...
389// ----------------------------------------------------------------------------
390
391void Layer::lockPageFlip(bool& recomputeVisibleRegions)
392{
Jamie Gennisbd5404d2011-06-26 18:27:47 -0700393 if (mQueuedFrames > 0) {
Jamie Gennis8d468492011-09-14 18:23:37 -0700394 // Capture the old state of the layer for comparisons later
Jamie Gennisc0545702011-07-28 14:54:07 -0700395 const bool oldOpacity = isOpaque();
Jamie Gennis8d468492011-09-14 18:23:37 -0700396 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
Jamie Gennisc0545702011-07-28 14:54:07 -0700397
Jamie Gennisbd5404d2011-06-26 18:27:47 -0700398 // signal another event if we have more frames pending
399 if (android_atomic_dec(&mQueuedFrames) > 1) {
400 mFlinger->signalEvent();
401 }
402
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700403 if (mSurfaceTexture->updateTexImage() < NO_ERROR) {
404 // something happened!
405 recomputeVisibleRegions = true;
406 return;
407 }
Mathias Agopian593c05c2010-06-02 23:28:45 -0700408
Jamie Gennis8d468492011-09-14 18:23:37 -0700409 // update the active buffer
410 mActiveBuffer = mSurfaceTexture->getCurrentBuffer();
Mathias Agopian9e3d6932010-03-15 18:15:20 -0700411
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700412 const Rect crop(mSurfaceTexture->getCurrentCrop());
413 const uint32_t transform(mSurfaceTexture->getCurrentTransform());
Mathias Agopianff86f372011-07-18 16:15:08 -0700414 const uint32_t scalingMode(mSurfaceTexture->getCurrentScalingMode());
415 if ((crop != mCurrentCrop) ||
416 (transform != mCurrentTransform) ||
417 (scalingMode != mCurrentScalingMode))
418 {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700419 mCurrentCrop = crop;
420 mCurrentTransform = transform;
Mathias Agopianff86f372011-07-18 16:15:08 -0700421 mCurrentScalingMode = scalingMode;
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700422 mFlinger->invalidateHwcGeometry();
423 }
Mathias Agopian575eaf52010-12-13 18:51:59 -0800424
Mathias Agopiance8e0ba2011-08-30 15:02:41 -0700425 GLfloat textureMatrix[16];
426 mSurfaceTexture->getTransformMatrix(textureMatrix);
427 if (memcmp(textureMatrix, mTextureMatrix, sizeof(textureMatrix))) {
428 memcpy(mTextureMatrix, textureMatrix, sizeof(textureMatrix));
429 mFlinger->invalidateHwcGeometry();
430 }
431
Jamie Gennis8d468492011-09-14 18:23:37 -0700432 uint32_t bufWidth = mActiveBuffer->getWidth();
433 uint32_t bufHeight = mActiveBuffer->getHeight();
434 if (oldActiveBuffer != NULL) {
435 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
436 bufHeight != uint32_t(oldActiveBuffer->height)) {
Mathias Agopiance8e0ba2011-08-30 15:02:41 -0700437 mFlinger->invalidateHwcGeometry();
438 }
439 }
440
Jamie Gennis8d468492011-09-14 18:23:37 -0700441 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
Jamie Gennisc0545702011-07-28 14:54:07 -0700442 if (oldOpacity != isOpaque()) {
Eric Hassold2ae32bd2011-02-10 14:41:26 -0800443 recomputeVisibleRegions = true;
444 }
445
Mathias Agopian56e8d672011-08-23 12:34:29 -0700446 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
447 glTexParameterx(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
Mathias Agopian1473f462009-04-10 14:24:30 -0700448
Jamie Gennisde14eca2011-10-14 16:44:08 -0700449 // update the layer size if needed
Mathias Agopian9e3d6932010-03-15 18:15:20 -0700450 const Layer::State& front(drawingState());
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700451
452 // FIXME: mPostedDirtyRegion = dirty & bounds
453 mPostedDirtyRegion.set(front.w, front.h);
454
Mathias Agopianf07b8a32011-07-19 15:24:46 -0700455 if ((front.w != front.requested_w) ||
456 (front.h != front.requested_h))
Mathias Agopianbd23e302009-09-30 14:07:22 -0700457 {
Mathias Agopianf07b8a32011-07-19 15:24:46 -0700458 // check that we received a buffer of the right size
459 // (Take the buffer's orientation into account)
Mathias Agopianf07b8a32011-07-19 15:24:46 -0700460 if (mCurrentTransform & Transform::ROT_90) {
461 swap(bufWidth, bufHeight);
462 }
463
464 if (isFixedSize() ||
465 (bufWidth == front.requested_w &&
466 bufHeight == front.requested_h))
Mathias Agopian9e3d6932010-03-15 18:15:20 -0700467 {
468 // Here we pretend the transaction happened by updating the
469 // current and drawing states. Drawing state is only accessed
470 // in this thread, no need to have it locked
471 Layer::State& editDraw(mDrawingState);
472 editDraw.w = editDraw.requested_w;
473 editDraw.h = editDraw.requested_h;
Mathias Agopianbd23e302009-09-30 14:07:22 -0700474
Mathias Agopian9e3d6932010-03-15 18:15:20 -0700475 // We also need to update the current state so that we don't
476 // end-up doing too much work during the next transaction.
477 // NOTE: We actually don't need hold the transaction lock here
478 // because State::w and State::h are only accessed from
479 // this thread
480 Layer::State& editTemp(currentState());
481 editTemp.w = editDraw.w;
482 editTemp.h = editDraw.h;
Mathias Agopianbd23e302009-09-30 14:07:22 -0700483
Mathias Agopian9e3d6932010-03-15 18:15:20 -0700484 // recompute visible region
485 recomputeVisibleRegions = true;
Mathias Agopianf07b8a32011-07-19 15:24:46 -0700486 }
Mathias Agopianf3503c22011-07-25 19:56:08 -0700487
Steve Block5baa3a62011-12-20 16:23:08 +0000488 ALOGD_IF(DEBUG_RESIZE,
Mathias Agopianf3503c22011-07-25 19:56:08 -0700489 "lockPageFlip : "
490 " (layer=%p), buffer (%ux%u, tr=%02x), "
491 "requested (%dx%d)",
492 this,
493 bufWidth, bufHeight, mCurrentTransform,
494 front.requested_w, front.requested_h);
Mathias Agopianbd23e302009-09-30 14:07:22 -0700495 }
Mathias Agopian7cf03ba2009-09-16 18:27:24 -0700496 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497}
498
499void Layer::unlockPageFlip(
500 const Transform& planeTransform, Region& outDirtyRegion)
501{
502 Region dirtyRegion(mPostedDirtyRegion);
503 if (!dirtyRegion.isEmpty()) {
504 mPostedDirtyRegion.clear();
505 // The dirty region is given in the layer's coordinate space
506 // transform the dirty region by the surface's transformation
507 // and the global transformation.
508 const Layer::State& s(drawingState());
509 const Transform tr(planeTransform * s.transform);
510 dirtyRegion = tr.transform(dirtyRegion);
511
512 // At this point, the dirty region is in screen space.
513 // Make sure it's constrained by the visible region (which
514 // is in screen space as well).
515 dirtyRegion.andSelf(visibleRegionScreen);
516 outDirtyRegion.orSelf(dirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 }
518}
519
Mathias Agopian9bce8732010-04-20 17:55:49 -0700520void Layer::dump(String8& result, char* buffer, size_t SIZE) const
521{
522 LayerBaseClient::dump(result, buffer, SIZE);
523
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700524 sp<const GraphicBuffer> buf0(mActiveBuffer);
525 uint32_t w0=0, h0=0, s0=0, f0=0;
Mathias Agopian9bce8732010-04-20 17:55:49 -0700526 if (buf0 != 0) {
527 w0 = buf0->getWidth();
528 h0 = buf0->getHeight();
529 s0 = buf0->getStride();
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700530 f0 = buf0->format;
Mathias Agopian9bce8732010-04-20 17:55:49 -0700531 }
532 snprintf(buffer, SIZE,
533 " "
Mathias Agopian0c3367f2011-08-08 16:02:13 -0700534 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
Jamie Gennisde14eca2011-10-14 16:44:08 -0700535 " transform-hint=0x%02x, queued-frames=%d\n",
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700536 mFormat, w0, h0, s0,f0,
Jamie Gennisde14eca2011-10-14 16:44:08 -0700537 getTransformHint(), mQueuedFrames);
Mathias Agopian9bce8732010-04-20 17:55:49 -0700538
539 result.append(buffer);
Mathias Agopian9bce8732010-04-20 17:55:49 -0700540
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700541 if (mSurfaceTexture != 0) {
542 mSurfaceTexture->dump(result, " ", buffer, SIZE);
Mathias Agopian5e140102010-06-08 19:54:15 -0700543 }
Mathias Agopian7623da42010-06-01 15:12:58 -0700544}
545
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700546uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopian7623da42010-06-01 15:12:58 -0700547{
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700548 // TODO: should we do something special if mSecure is set?
549 if (mProtectedByApp) {
550 // need a hardware-protected path to external video sink
551 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis6c925d02010-11-02 11:51:32 -0700552 }
Jamie Gennisd52c14d2011-08-10 11:48:07 -0700553 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700554 return usage;
Mathias Agopian59751db2010-05-07 15:58:44 -0700555}
556
Mathias Agopian2143fe02011-08-23 18:03:18 -0700557uint32_t Layer::getTransformHint() const {
558 uint32_t orientation = 0;
559 if (!mFlinger->mDebugDisableTransformHint) {
Jamie Gennisfd2429d2011-09-23 15:54:34 -0700560 orientation = getPlaneOrientation();
Mathias Agopian2143fe02011-08-23 18:03:18 -0700561 if (orientation & Transform::ROT_INVALID) {
562 orientation = 0;
563 }
564 }
565 return orientation;
566}
567
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568// ---------------------------------------------------------------------------
569
570
571}; // namespace android