blob: 3d049a79616f92b2722acbe0a6bcfb91649b1481 [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
21#include <utils/Errors.h>
22#include <utils/Log.h>
Mathias Agopian947f4f42009-05-22 01:27:01 -070023#include <binder/IPCThreadState.h>
24#include <binder/IServiceManager.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
26#include <GLES/gl.h>
27#include <GLES/glext.h>
28
29#include <hardware/hardware.h>
30
31#include "clz.h"
32#include "LayerBase.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033#include "SurfaceFlinger.h"
34#include "DisplayHardware/DisplayHardware.h"
Mathias Agopian9f2c4fd2010-05-10 20:06:11 -070035#include "TextureManager.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
37
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038namespace android {
39
40// ---------------------------------------------------------------------------
41
Mathias Agopian1efba9a2010-08-10 18:09:09 -070042int32_t LayerBase::sSequence = 1;
43
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044LayerBase::LayerBase(SurfaceFlinger* flinger, DisplayID display)
45 : dpy(display), contentDirty(false),
Mathias Agopian1efba9a2010-08-10 18:09:09 -070046 sequence(uint32_t(android_atomic_inc(&sSequence))),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 mFlinger(flinger),
Mathias Agopian92377032010-05-26 22:08:52 -070048 mNeedsFiltering(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 mOrientation(0),
Mathias Agopianed2ab7f2010-02-19 17:51:58 -080050 mLeft(0), mTop(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 mTransactionFlags(0),
Mathias Agopiana8a0aa82010-04-21 15:24:11 -070052 mPremultipliedAlpha(true), mName("unnamed"), mDebug(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 mInvalidate(0)
54{
55 const DisplayHardware& hw(flinger->graphicPlane(0).displayHardware());
56 mFlags = hw.getFlags();
Mathias Agopiane96aa3e2010-08-19 17:01:19 -070057 mBufferCrop.makeInvalid();
58 mBufferTransform = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059}
60
61LayerBase::~LayerBase()
62{
63}
64
Mathias Agopian015b5972010-03-09 19:17:47 -080065void LayerBase::setName(const String8& name) {
66 mName = name;
67}
68
69String8 LayerBase::getName() const {
70 return mName;
71}
72
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073const GraphicPlane& LayerBase::graphicPlane(int dpy) const
74{
75 return mFlinger->graphicPlane(dpy);
76}
77
78GraphicPlane& LayerBase::graphicPlane(int dpy)
79{
80 return mFlinger->graphicPlane(dpy);
81}
82
83void LayerBase::initStates(uint32_t w, uint32_t h, uint32_t flags)
84{
85 uint32_t layerFlags = 0;
86 if (flags & ISurfaceComposer::eHidden)
87 layerFlags = ISurfaceComposer::eLayerHidden;
88
89 if (flags & ISurfaceComposer::eNonPremultiplied)
90 mPremultipliedAlpha = false;
91
Mathias Agopiane1b6f242009-09-29 22:39:22 -070092 mCurrentState.z = 0;
93 mCurrentState.w = w;
94 mCurrentState.h = h;
95 mCurrentState.requested_w = w;
96 mCurrentState.requested_h = h;
97 mCurrentState.alpha = 0xFF;
98 mCurrentState.flags = layerFlags;
99 mCurrentState.sequence = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 mCurrentState.transform.set(0, 0);
101
102 // drawing state & current state are identical
103 mDrawingState = mCurrentState;
104}
105
Mathias Agopian88516172009-09-29 22:32:36 -0700106void LayerBase::commitTransaction() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 mDrawingState = mCurrentState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108}
109void LayerBase::forceVisibilityTransaction() {
110 // this can be called without SurfaceFlinger.mStateLock, but if we
111 // can atomically increment the sequence number, it doesn't matter.
112 android_atomic_inc(&mCurrentState.sequence);
113 requestTransaction();
114}
115bool LayerBase::requestTransaction() {
116 int32_t old = setTransactionFlags(eTransactionNeeded);
117 return ((old & eTransactionNeeded) == 0);
118}
119uint32_t LayerBase::getTransactionFlags(uint32_t flags) {
120 return android_atomic_and(~flags, &mTransactionFlags) & flags;
121}
122uint32_t LayerBase::setTransactionFlags(uint32_t flags) {
123 return android_atomic_or(flags, &mTransactionFlags);
124}
125
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126bool LayerBase::setPosition(int32_t x, int32_t y) {
127 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y)
128 return false;
129 mCurrentState.sequence++;
130 mCurrentState.transform.set(x, y);
131 requestTransaction();
132 return true;
133}
134bool LayerBase::setLayer(uint32_t z) {
135 if (mCurrentState.z == z)
136 return false;
137 mCurrentState.sequence++;
138 mCurrentState.z = z;
139 requestTransaction();
140 return true;
141}
142bool LayerBase::setSize(uint32_t w, uint32_t h) {
Mathias Agopiane1b6f242009-09-29 22:39:22 -0700143 if (mCurrentState.requested_w == w && mCurrentState.requested_h == h)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 return false;
Mathias Agopiane1b6f242009-09-29 22:39:22 -0700145 mCurrentState.requested_w = w;
146 mCurrentState.requested_h = h;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 requestTransaction();
148 return true;
149}
150bool LayerBase::setAlpha(uint8_t alpha) {
151 if (mCurrentState.alpha == alpha)
152 return false;
153 mCurrentState.sequence++;
154 mCurrentState.alpha = alpha;
155 requestTransaction();
156 return true;
157}
158bool LayerBase::setMatrix(const layer_state_t::matrix22_t& matrix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 mCurrentState.sequence++;
160 mCurrentState.transform.set(
161 matrix.dsdx, matrix.dsdy, matrix.dtdx, matrix.dtdy);
162 requestTransaction();
163 return true;
164}
165bool LayerBase::setTransparentRegionHint(const Region& transparent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 mCurrentState.sequence++;
167 mCurrentState.transparentRegion = transparent;
168 requestTransaction();
169 return true;
170}
171bool LayerBase::setFlags(uint8_t flags, uint8_t mask) {
172 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
173 if (mCurrentState.flags == newFlags)
174 return false;
175 mCurrentState.sequence++;
176 mCurrentState.flags = newFlags;
177 requestTransaction();
178 return true;
179}
180
181Rect LayerBase::visibleBounds() const
182{
183 return mTransformedBounds;
184}
185
186void LayerBase::setVisibleRegion(const Region& visibleRegion) {
187 // always called from main thread
188 visibleRegionScreen = visibleRegion;
189}
190
191void LayerBase::setCoveredRegion(const Region& coveredRegion) {
192 // always called from main thread
193 coveredRegionScreen = coveredRegion;
194}
195
196uint32_t LayerBase::doTransaction(uint32_t flags)
197{
198 const Layer::State& front(drawingState());
199 const Layer::State& temp(currentState());
200
Mathias Agopiane1b6f242009-09-29 22:39:22 -0700201 if ((front.requested_w != temp.requested_w) ||
202 (front.requested_h != temp.requested_h)) {
203 // resize the layer, set the physical size to the requested size
204 Layer::State& editTemp(currentState());
205 editTemp.w = temp.requested_w;
206 editTemp.h = temp.requested_h;
207 }
208
Mathias Agopian70cab912009-09-30 12:48:47 -0700209 if ((front.w != temp.w) || (front.h != temp.h)) {
210 // invalidate and recompute the visible regions if needed
211 flags |= Layer::eVisibleRegion;
Mathias Agopian70cab912009-09-30 12:48:47 -0700212 }
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 if (temp.sequence != front.sequence) {
215 // invalidate and recompute the visible regions if needed
216 flags |= eVisibleRegion;
217 this->contentDirty = true;
Mathias Agopian44cac132009-09-23 18:34:53 -0700218
Mathias Agopian92377032010-05-26 22:08:52 -0700219 mNeedsFiltering = false;
Mathias Agopian44cac132009-09-23 18:34:53 -0700220 if (!(mFlags & DisplayHardware::SLOW_CONFIG)) {
221 // we may use linear filtering, if the matrix scales us
222 const uint8_t type = temp.transform.getType();
223 if (!temp.transform.preserveRects() || (type >= Transform::SCALE)) {
Mathias Agopian92377032010-05-26 22:08:52 -0700224 mNeedsFiltering = true;
Mathias Agopian44cac132009-09-23 18:34:53 -0700225 }
226 }
227 }
228
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 // Commit the transaction
Mathias Agopian88516172009-09-29 22:32:36 -0700230 commitTransaction();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 return flags;
232}
233
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234void LayerBase::validateVisibility(const Transform& planeTransform)
235{
236 const Layer::State& s(drawingState());
237 const Transform tr(planeTransform * s.transform);
238 const bool transformed = tr.transformed();
239
Mathias Agopian9779b222009-09-07 16:32:45 -0700240 uint32_t w = s.w;
241 uint32_t h = s.h;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 tr.transform(mVertices[0], 0, 0);
243 tr.transform(mVertices[1], 0, h);
244 tr.transform(mVertices[2], w, h);
245 tr.transform(mVertices[3], w, 0);
246 if (UNLIKELY(transformed)) {
247 // NOTE: here we could also punt if we have too many rectangles
248 // in the transparent region
249 if (tr.preserveRects()) {
250 // transform the transparent region
251 transparentRegionScreen = tr.transform(s.transparentRegion);
252 } else {
253 // transformation too complex, can't do the transparent region
254 // optimization.
255 transparentRegionScreen.clear();
256 }
257 } else {
258 transparentRegionScreen = s.transparentRegion;
259 }
260
261 // cache a few things...
262 mOrientation = tr.getOrientation();
263 mTransformedBounds = tr.makeBounds(w, h);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 mLeft = tr.tx();
265 mTop = tr.ty();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266}
267
268void LayerBase::lockPageFlip(bool& recomputeVisibleRegions)
269{
270}
271
272void LayerBase::unlockPageFlip(
273 const Transform& planeTransform, Region& outDirtyRegion)
274{
275 if ((android_atomic_and(~1, &mInvalidate)&1) == 1) {
276 outDirtyRegion.orSelf(visibleRegionScreen);
277 }
278}
279
280void LayerBase::finishPageFlip()
281{
282}
283
284void LayerBase::invalidate()
285{
286 if ((android_atomic_or(1, &mInvalidate)&1) == 0) {
287 mFlinger->signalEvent();
288 }
289}
290
291void LayerBase::drawRegion(const Region& reg) const
292{
Mathias Agopian6158b1b2009-05-11 00:03:41 -0700293 Region::const_iterator it = reg.begin();
294 Region::const_iterator const end = reg.end();
295 if (it != end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 Rect r;
297 const DisplayHardware& hw(graphicPlane(0).displayHardware());
298 const int32_t fbWidth = hw.getWidth();
299 const int32_t fbHeight = hw.getHeight();
300 const GLshort vertices[][2] = { { 0, 0 }, { fbWidth, 0 },
301 { fbWidth, fbHeight }, { 0, fbHeight } };
302 glVertexPointer(2, GL_SHORT, 0, vertices);
Mathias Agopian6158b1b2009-05-11 00:03:41 -0700303 while (it != end) {
304 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305 const GLint sy = fbHeight - (r.top + r.height());
306 glScissor(r.left, sy, r.width(), r.height());
307 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
308 }
309 }
310}
311
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700312void LayerBase::setGeometry(hwc_layer_t* hwcl) {
313 hwcl->flags |= HWC_SKIP_LAYER;
314}
315
316void LayerBase::setPerFrameData(hwc_layer_t* hwcl) {
317 hwcl->compositionType = HWC_FRAMEBUFFER;
318 hwcl->handle = NULL;
319}
320
Mathias Agopian8514b922010-08-10 20:42:20 -0700321void LayerBase::draw(const Region& clip) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800322{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323 // reset GL state
324 glEnable(GL_SCISSOR_TEST);
325
326 onDraw(clip);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327}
328
Mathias Agopian0d3c0062010-05-26 22:26:12 -0700329void LayerBase::clearWithOpenGL(const Region& clip, GLclampf red,
330 GLclampf green, GLclampf blue,
331 GLclampf alpha) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332{
333 const DisplayHardware& hw(graphicPlane(0).displayHardware());
334 const uint32_t fbHeight = hw.getHeight();
Mathias Agopian0d3c0062010-05-26 22:26:12 -0700335 glColor4f(red,green,blue,alpha);
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700336
337 TextureManager::deactivateTextures();
338
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 glDisable(GL_BLEND);
340 glDisable(GL_DITHER);
Mathias Agopian6158b1b2009-05-11 00:03:41 -0700341
342 Region::const_iterator it = clip.begin();
343 Region::const_iterator const end = clip.end();
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700344 glEnable(GL_SCISSOR_TEST);
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700345 glVertexPointer(2, GL_FLOAT, 0, mVertices);
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700346 while (it != end) {
347 const Rect& r = *it++;
348 const GLint sy = fbHeight - (r.top + r.height());
349 glScissor(r.left, sy, r.width(), r.height());
350 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800351 }
352}
353
Rebecca Schultz Zavinc8546782009-09-01 23:06:45 -0700354void LayerBase::clearWithOpenGL(const Region& clip) const
355{
356 clearWithOpenGL(clip,0,0,0,0);
357}
358
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700359template <typename T>
360static inline
361void swap(T& a, T& b) {
362 T t(a);
363 a = b;
364 b = t;
365}
366
Mathias Agopian999543b2009-06-23 18:08:22 -0700367void LayerBase::drawWithOpenGL(const Region& clip, const Texture& texture) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368{
369 const DisplayHardware& hw(graphicPlane(0).displayHardware());
370 const uint32_t fbHeight = hw.getHeight();
371 const State& s(drawingState());
Mathias Agopiandff8e582009-05-04 14:17:04 -0700372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 // bind our texture
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700374 TextureManager::activateTexture(texture, needsFiltering());
Mathias Agopian999543b2009-06-23 18:08:22 -0700375 uint32_t width = texture.width;
376 uint32_t height = texture.height;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377
Mathias Agopiana0612e42010-04-12 15:34:55 -0700378 GLenum src = mPremultipliedAlpha ? GL_ONE : GL_SRC_ALPHA;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379 if (UNLIKELY(s.alpha < 0xFF)) {
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700380 const GLfloat alpha = s.alpha * (1.0f/255.0f);
Mathias Agopiana0612e42010-04-12 15:34:55 -0700381 if (mPremultipliedAlpha) {
382 glColor4f(alpha, alpha, alpha, alpha);
383 } else {
384 glColor4f(1, 1, 1, alpha);
385 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 glEnable(GL_BLEND);
387 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
Mathias Agopiana0612e42010-04-12 15:34:55 -0700388 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 } else {
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700390 glColor4f(1, 1, 1, 1);
Mathias Agopiana0612e42010-04-12 15:34:55 -0700391 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 if (needsBlending()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 glEnable(GL_BLEND);
394 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
395 } else {
396 glDisable(GL_BLEND);
397 }
398 }
399
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700400 /*
401 * compute texture coordinates
402 * here, we handle NPOT, cropping and buffer transformations
403 */
404
405 GLfloat cl, ct, cr, cb;
406 if (!mBufferCrop.isEmpty()) {
407 // source is cropped
408 const GLfloat us = (texture.NPOTAdjust ? texture.wScale : 1.0f) / width;
409 const GLfloat vs = (texture.NPOTAdjust ? texture.hScale : 1.0f) / height;
410 cl = mBufferCrop.left * us;
411 ct = mBufferCrop.top * vs;
412 cr = mBufferCrop.right * us;
413 cb = mBufferCrop.bottom * vs;
414 } else {
415 cl = 0;
416 ct = 0;
417 cr = (texture.NPOTAdjust ? texture.wScale : 1.0f);
418 cb = (texture.NPOTAdjust ? texture.hScale : 1.0f);
419 }
420
421 struct TexCoords {
422 GLfloat u;
423 GLfloat v;
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700424 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700426 enum {
427 // name of the corners in the texture map
428 LB = 0, // left-bottom
429 LT = 1, // left-top
430 RT = 2, // right-top
431 RB = 3 // right-bottom
432 };
433
434 // vertices in screen space
435 int vLT = LB;
436 int vLB = LT;
437 int vRB = RT;
438 int vRT = RB;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700440 // the texture's source is rotated
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700441 uint32_t transform = mBufferTransform;
442 if (transform & HAL_TRANSFORM_ROT_90) {
443 vLT = RB;
444 vLB = LB;
445 vRB = LT;
446 vRT = RT;
447 }
448 if (transform & HAL_TRANSFORM_FLIP_V) {
449 swap(vLT, vLB);
450 swap(vRB, vRT);
451 }
452 if (transform & HAL_TRANSFORM_FLIP_H) {
453 swap(vLT, vRB);
454 swap(vLB, vRT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 }
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700456
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700457 TexCoords texCoords[4];
458 texCoords[vLT].u = cl;
459 texCoords[vLT].v = ct;
460 texCoords[vLB].u = cl;
461 texCoords[vLB].v = cb;
462 texCoords[vRB].u = cr;
463 texCoords[vRB].v = cb;
464 texCoords[vRT].u = cr;
465 texCoords[vRT].v = ct;
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700466
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700467 if (needsDithering()) {
468 glEnable(GL_DITHER);
469 } else {
470 glDisable(GL_DITHER);
471 }
472
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700473 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
474 glVertexPointer(2, GL_FLOAT, 0, mVertices);
475 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
476
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700477 Region::const_iterator it = clip.begin();
478 Region::const_iterator const end = clip.end();
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700479 while (it != end) {
480 const Rect& r = *it++;
481 const GLint sy = fbHeight - (r.top + r.height());
482 glScissor(r.left, sy, r.width(), r.height());
483 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
484 }
485 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486}
487
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700488void LayerBase::setBufferCrop(const Rect& crop) {
489 if (!crop.isEmpty()) {
490 mBufferCrop = crop;
491 }
492}
493
494void LayerBase::setBufferTransform(uint32_t transform) {
495 mBufferTransform = transform;
496}
497
Mathias Agopian9bce8732010-04-20 17:55:49 -0700498void LayerBase::dump(String8& result, char* buffer, size_t SIZE) const
499{
500 const Layer::State& s(drawingState());
501 snprintf(buffer, SIZE,
502 "+ %s %p\n"
503 " "
504 "z=%9d, pos=(%4d,%4d), size=(%4d,%4d), "
505 "needsBlending=%1d, needsDithering=%1d, invalidate=%1d, "
506 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n",
507 getTypeId(), this, s.z, tx(), ty(), s.w, s.h,
508 needsBlending(), needsDithering(), contentDirty,
509 s.alpha, s.flags,
510 s.transform[0][0], s.transform[0][1],
511 s.transform[1][0], s.transform[1][1]);
512 result.append(buffer);
513}
Mathias Agopian9042b452009-10-26 20:12:37 -0700514
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800515// ---------------------------------------------------------------------------
516
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700517int32_t LayerBaseClient::sIdentity = 1;
Mathias Agopianc6603952009-06-23 20:06:46 -0700518
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519LayerBaseClient::LayerBaseClient(SurfaceFlinger* flinger, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -0700520 const sp<Client>& client)
Mathias Agopian7623da42010-06-01 15:12:58 -0700521 : LayerBase(flinger, display), mClientRef(client),
Mathias Agopian85b8d122010-03-08 19:29:09 -0800522 mIdentity(uint32_t(android_atomic_inc(&sIdentity)))
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523{
Mathias Agopian1473f462009-04-10 14:24:30 -0700524}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526LayerBaseClient::~LayerBaseClient()
527{
Mathias Agopian7623da42010-06-01 15:12:58 -0700528 sp<Client> c(mClientRef.promote());
Mathias Agopian593c05c2010-06-02 23:28:45 -0700529 if (c != 0) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700530 c->detachLayer(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 }
532}
533
Mathias Agopian1473f462009-04-10 14:24:30 -0700534sp<LayerBaseClient::Surface> LayerBaseClient::getSurface()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535{
Mathias Agopian1473f462009-04-10 14:24:30 -0700536 sp<Surface> s;
537 Mutex::Autolock _l(mLock);
538 s = mClientSurface.promote();
539 if (s == 0) {
540 s = createSurface();
541 mClientSurface = s;
542 }
543 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544}
545
Mathias Agopian1473f462009-04-10 14:24:30 -0700546sp<LayerBaseClient::Surface> LayerBaseClient::createSurface() const
547{
Mathias Agopian593c05c2010-06-02 23:28:45 -0700548 return new Surface(mFlinger, mIdentity,
Mathias Agopian1473f462009-04-10 14:24:30 -0700549 const_cast<LayerBaseClient *>(this));
550}
551
Mathias Agopian9bce8732010-04-20 17:55:49 -0700552void LayerBaseClient::dump(String8& result, char* buffer, size_t SIZE) const
553{
554 LayerBase::dump(result, buffer, SIZE);
555
Mathias Agopian7623da42010-06-01 15:12:58 -0700556 sp<Client> client(mClientRef.promote());
Mathias Agopian9bce8732010-04-20 17:55:49 -0700557 snprintf(buffer, SIZE,
558 " name=%s\n"
Mathias Agopian593c05c2010-06-02 23:28:45 -0700559 " client=%p, identity=%u\n",
Mathias Agopian9bce8732010-04-20 17:55:49 -0700560 getName().string(),
Mathias Agopian593c05c2010-06-02 23:28:45 -0700561 client.get(), getIdentity());
Mathias Agopian9bce8732010-04-20 17:55:49 -0700562
563 result.append(buffer);
564}
565
Mathias Agopian1473f462009-04-10 14:24:30 -0700566// ---------------------------------------------------------------------------
567
Mathias Agopian6cf0db22009-04-17 19:36:26 -0700568LayerBaseClient::Surface::Surface(
569 const sp<SurfaceFlinger>& flinger,
Mathias Agopian593c05c2010-06-02 23:28:45 -0700570 int identity,
Mathias Agopian1473f462009-04-10 14:24:30 -0700571 const sp<LayerBaseClient>& owner)
Mathias Agopian593c05c2010-06-02 23:28:45 -0700572 : mFlinger(flinger), mIdentity(identity), mOwner(owner)
Mathias Agopian6cf0db22009-04-17 19:36:26 -0700573{
Mathias Agopian1473f462009-04-10 14:24:30 -0700574}
575
Mathias Agopian6cf0db22009-04-17 19:36:26 -0700576LayerBaseClient::Surface::~Surface()
577{
578 /*
579 * This is a good place to clean-up all client resources
580 */
581
582 // destroy client resources
583 sp<LayerBaseClient> layer = getOwner();
584 if (layer != 0) {
585 mFlinger->destroySurface(layer);
586 }
Mathias Agopian1473f462009-04-10 14:24:30 -0700587}
588
589sp<LayerBaseClient> LayerBaseClient::Surface::getOwner() const {
590 sp<LayerBaseClient> owner(mOwner.promote());
591 return owner;
592}
593
Mathias Agopian1473f462009-04-10 14:24:30 -0700594status_t LayerBaseClient::Surface::onTransact(
Mathias Agopian151e8592009-06-15 18:24:59 -0700595 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
Mathias Agopian1473f462009-04-10 14:24:30 -0700596{
597 switch (code) {
598 case REGISTER_BUFFERS:
599 case UNREGISTER_BUFFERS:
600 case CREATE_OVERLAY:
601 {
Mathias Agopian151e8592009-06-15 18:24:59 -0700602 if (!mFlinger->mAccessSurfaceFlinger.checkCalling()) {
603 IPCThreadState* ipc = IPCThreadState::self();
604 const int pid = ipc->getCallingPid();
605 const int uid = ipc->getCallingUid();
606 LOGE("Permission Denial: "
607 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
608 return PERMISSION_DENIED;
Mathias Agopian1473f462009-04-10 14:24:30 -0700609 }
610 }
611 }
612 return BnSurface::onTransact(code, data, reply, flags);
613}
614
Mathias Agopian2be352a2010-05-21 17:24:35 -0700615sp<GraphicBuffer> LayerBaseClient::Surface::requestBuffer(int bufferIdx,
616 uint32_t w, uint32_t h, uint32_t format, uint32_t usage)
Mathias Agopian1473f462009-04-10 14:24:30 -0700617{
618 return NULL;
619}
620
Mathias Agopian59751db2010-05-07 15:58:44 -0700621status_t LayerBaseClient::Surface::setBufferCount(int bufferCount)
622{
623 return INVALID_OPERATION;
624}
625
Mathias Agopian1473f462009-04-10 14:24:30 -0700626status_t LayerBaseClient::Surface::registerBuffers(
627 const ISurface::BufferHeap& buffers)
628{
629 return INVALID_OPERATION;
630}
631
632void LayerBaseClient::Surface::postBuffer(ssize_t offset)
633{
634}
635
636void LayerBaseClient::Surface::unregisterBuffers()
637{
638}
639
640sp<OverlayRef> LayerBaseClient::Surface::createOverlay(
Chih-Chung Change1ceec22010-01-21 17:31:06 -0800641 uint32_t w, uint32_t h, int32_t format, int32_t orientation)
Mathias Agopian1473f462009-04-10 14:24:30 -0700642{
643 return NULL;
644};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645
646// ---------------------------------------------------------------------------
647
648}; // namespace android