blob: 9ddb05f3b00194de51034b1b55d448a8c4e4d29d [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
21#include <utils/Errors.h>
22#include <utils/Log.h>
Mathias Agopian310f8da2009-05-22 01:27:01 -070023#include <binder/IPCThreadState.h>
24#include <binder/IServiceManager.h>
The Android Open Source Projectedbf3b62009-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 Projectedbf3b62009-03-03 19:31:44 -080033#include "SurfaceFlinger.h"
34#include "DisplayHardware/DisplayHardware.h"
Mathias Agopiand606de62010-05-10 20:06:11 -070035#include "TextureManager.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036
37
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038namespace android {
39
40// ---------------------------------------------------------------------------
41
Mathias Agopianf6679fc2010-08-10 18:09:09 -070042int32_t LayerBase::sSequence = 1;
43
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080044LayerBase::LayerBase(SurfaceFlinger* flinger, DisplayID display)
45 : dpy(display), contentDirty(false),
Mathias Agopianf6679fc2010-08-10 18:09:09 -070046 sequence(uint32_t(android_atomic_inc(&sSequence))),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047 mFlinger(flinger),
Mathias Agopiana7f66922010-05-26 22:08:52 -070048 mNeedsFiltering(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080049 mOrientation(0),
Mathias Agopianca6fab22010-02-19 17:51:58 -080050 mLeft(0), mTop(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051 mTransactionFlags(0),
Mathias Agopian245e4d72010-04-21 15:24:11 -070052 mPremultipliedAlpha(true), mName("unnamed"), mDebug(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053 mInvalidate(0)
54{
55 const DisplayHardware& hw(flinger->graphicPlane(0).displayHardware());
56 mFlags = hw.getFlags();
Mathias Agopianb661d662010-08-19 17:01:19 -070057 mBufferCrop.makeInvalid();
58 mBufferTransform = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080059}
60
61LayerBase::~LayerBase()
62{
63}
64
Mathias Agopiand1296592010-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 Projectedbf3b62009-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 Agopian7e4a5872009-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 Projectedbf3b62009-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 Agopianba6be542009-09-29 22:32:36 -0700106void LayerBase::commitTransaction() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107 mDrawingState = mCurrentState;
The Android Open Source Projectedbf3b62009-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 Projectedbf3b62009-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 Agopian7e4a5872009-09-29 22:39:22 -0700143 if (mCurrentState.requested_w == w && mCurrentState.requested_h == h)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800144 return false;
Mathias Agopian7e4a5872009-09-29 22:39:22 -0700145 mCurrentState.requested_w = w;
146 mCurrentState.requested_h = h;
The Android Open Source Projectedbf3b62009-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 Projectedbf3b62009-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 Projectedbf3b62009-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 Agopian7e4a5872009-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 Agopian6656dbc2009-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 Agopian6656dbc2009-09-30 12:48:47 -0700212 }
213
The Android Open Source Projectedbf3b62009-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 Agopiana2fe0a22009-09-23 18:34:53 -0700218
Mathias Agopian733189d2010-12-02 21:32:29 -0800219 // we may use linear filtering, if the matrix scales us
220 const uint8_t type = temp.transform.getType();
221 mNeedsFiltering = (!temp.transform.preserveRects() ||
222 (type >= Transform::SCALE));
Mathias Agopiana2fe0a22009-09-23 18:34:53 -0700223 }
224
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800225 // Commit the transaction
Mathias Agopianba6be542009-09-29 22:32:36 -0700226 commitTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800227 return flags;
228}
229
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230void LayerBase::validateVisibility(const Transform& planeTransform)
231{
232 const Layer::State& s(drawingState());
233 const Transform tr(planeTransform * s.transform);
234 const bool transformed = tr.transformed();
235
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700236 uint32_t w = s.w;
237 uint32_t h = s.h;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800238 tr.transform(mVertices[0], 0, 0);
239 tr.transform(mVertices[1], 0, h);
240 tr.transform(mVertices[2], w, h);
241 tr.transform(mVertices[3], w, 0);
242 if (UNLIKELY(transformed)) {
243 // NOTE: here we could also punt if we have too many rectangles
244 // in the transparent region
245 if (tr.preserveRects()) {
246 // transform the transparent region
247 transparentRegionScreen = tr.transform(s.transparentRegion);
248 } else {
249 // transformation too complex, can't do the transparent region
250 // optimization.
251 transparentRegionScreen.clear();
252 }
253 } else {
254 transparentRegionScreen = s.transparentRegion;
255 }
256
257 // cache a few things...
258 mOrientation = tr.getOrientation();
259 mTransformedBounds = tr.makeBounds(w, h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800260 mLeft = tr.tx();
261 mTop = tr.ty();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800262}
263
264void LayerBase::lockPageFlip(bool& recomputeVisibleRegions)
265{
266}
267
268void LayerBase::unlockPageFlip(
269 const Transform& planeTransform, Region& outDirtyRegion)
270{
271 if ((android_atomic_and(~1, &mInvalidate)&1) == 1) {
272 outDirtyRegion.orSelf(visibleRegionScreen);
273 }
274}
275
276void LayerBase::finishPageFlip()
277{
278}
279
280void LayerBase::invalidate()
281{
282 if ((android_atomic_or(1, &mInvalidate)&1) == 0) {
283 mFlinger->signalEvent();
284 }
285}
286
287void LayerBase::drawRegion(const Region& reg) const
288{
Mathias Agopian20f68782009-05-11 00:03:41 -0700289 Region::const_iterator it = reg.begin();
290 Region::const_iterator const end = reg.end();
291 if (it != end) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800292 Rect r;
293 const DisplayHardware& hw(graphicPlane(0).displayHardware());
294 const int32_t fbWidth = hw.getWidth();
295 const int32_t fbHeight = hw.getHeight();
296 const GLshort vertices[][2] = { { 0, 0 }, { fbWidth, 0 },
297 { fbWidth, fbHeight }, { 0, fbHeight } };
298 glVertexPointer(2, GL_SHORT, 0, vertices);
Mathias Agopian20f68782009-05-11 00:03:41 -0700299 while (it != end) {
300 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800301 const GLint sy = fbHeight - (r.top + r.height());
302 glScissor(r.left, sy, r.width(), r.height());
303 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
304 }
305 }
306}
307
Mathias Agopiana350ff92010-08-10 17:14:02 -0700308void LayerBase::setGeometry(hwc_layer_t* hwcl) {
309 hwcl->flags |= HWC_SKIP_LAYER;
310}
311
312void LayerBase::setPerFrameData(hwc_layer_t* hwcl) {
313 hwcl->compositionType = HWC_FRAMEBUFFER;
314 hwcl->handle = NULL;
315}
316
Mathias Agopianbc7e31a2010-08-10 20:42:20 -0700317void LayerBase::draw(const Region& clip) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800318{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800319 // reset GL state
320 glEnable(GL_SCISSOR_TEST);
321
322 onDraw(clip);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800323}
324
Mathias Agopian74c40c02010-09-29 13:02:36 -0700325void LayerBase::drawForSreenShot() const
326{
327 const DisplayHardware& hw(graphicPlane(0).displayHardware());
328 onDraw( Region(hw.bounds()) );
329}
330
Mathias Agopian010fccb2010-05-26 22:26:12 -0700331void LayerBase::clearWithOpenGL(const Region& clip, GLclampf red,
332 GLclampf green, GLclampf blue,
333 GLclampf alpha) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800334{
335 const DisplayHardware& hw(graphicPlane(0).displayHardware());
336 const uint32_t fbHeight = hw.getHeight();
Mathias Agopian010fccb2010-05-26 22:26:12 -0700337 glColor4f(red,green,blue,alpha);
Mathias Agopian0a917752010-06-14 21:20:00 -0700338
339 TextureManager::deactivateTextures();
340
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800341 glDisable(GL_BLEND);
342 glDisable(GL_DITHER);
Mathias Agopian20f68782009-05-11 00:03:41 -0700343
344 Region::const_iterator it = clip.begin();
345 Region::const_iterator const end = clip.end();
Mathias Agopian95a666b2009-09-24 14:57:26 -0700346 glEnable(GL_SCISSOR_TEST);
Mathias Agopian78fd5012010-04-20 14:51:04 -0700347 glVertexPointer(2, GL_FLOAT, 0, mVertices);
Mathias Agopian95a666b2009-09-24 14:57:26 -0700348 while (it != end) {
349 const Rect& r = *it++;
350 const GLint sy = fbHeight - (r.top + r.height());
351 glScissor(r.left, sy, r.width(), r.height());
352 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800353 }
354}
355
Rebecca Schultz Zavin29aa74c2009-09-01 23:06:45 -0700356void LayerBase::clearWithOpenGL(const Region& clip) const
357{
358 clearWithOpenGL(clip,0,0,0,0);
359}
360
Mathias Agopianb661d662010-08-19 17:01:19 -0700361template <typename T>
362static inline
363void swap(T& a, T& b) {
364 T t(a);
365 a = b;
366 b = t;
367}
368
Mathias Agopian1fed11c2009-06-23 18:08:22 -0700369void LayerBase::drawWithOpenGL(const Region& clip, const Texture& texture) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800370{
371 const DisplayHardware& hw(graphicPlane(0).displayHardware());
372 const uint32_t fbHeight = hw.getHeight();
373 const State& s(drawingState());
Mathias Agopian0926f502009-05-04 14:17:04 -0700374
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800375 // bind our texture
Mathias Agopian0a917752010-06-14 21:20:00 -0700376 TextureManager::activateTexture(texture, needsFiltering());
Mathias Agopian1fed11c2009-06-23 18:08:22 -0700377 uint32_t width = texture.width;
378 uint32_t height = texture.height;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800379
Mathias Agopian49753262010-04-12 15:34:55 -0700380 GLenum src = mPremultipliedAlpha ? GL_ONE : GL_SRC_ALPHA;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800381 if (UNLIKELY(s.alpha < 0xFF)) {
Mathias Agopian78fd5012010-04-20 14:51:04 -0700382 const GLfloat alpha = s.alpha * (1.0f/255.0f);
Mathias Agopian49753262010-04-12 15:34:55 -0700383 if (mPremultipliedAlpha) {
384 glColor4f(alpha, alpha, alpha, alpha);
385 } else {
386 glColor4f(1, 1, 1, alpha);
387 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800388 glEnable(GL_BLEND);
389 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
Mathias Agopian49753262010-04-12 15:34:55 -0700390 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800391 } else {
Mathias Agopian78fd5012010-04-20 14:51:04 -0700392 glColor4f(1, 1, 1, 1);
Mathias Agopian49753262010-04-12 15:34:55 -0700393 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800394 if (needsBlending()) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800395 glEnable(GL_BLEND);
396 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
397 } else {
398 glDisable(GL_BLEND);
399 }
400 }
401
Mathias Agopianb661d662010-08-19 17:01:19 -0700402 /*
403 * compute texture coordinates
404 * here, we handle NPOT, cropping and buffer transformations
405 */
406
407 GLfloat cl, ct, cr, cb;
408 if (!mBufferCrop.isEmpty()) {
409 // source is cropped
410 const GLfloat us = (texture.NPOTAdjust ? texture.wScale : 1.0f) / width;
411 const GLfloat vs = (texture.NPOTAdjust ? texture.hScale : 1.0f) / height;
412 cl = mBufferCrop.left * us;
413 ct = mBufferCrop.top * vs;
414 cr = mBufferCrop.right * us;
415 cb = mBufferCrop.bottom * vs;
416 } else {
417 cl = 0;
418 ct = 0;
419 cr = (texture.NPOTAdjust ? texture.wScale : 1.0f);
420 cb = (texture.NPOTAdjust ? texture.hScale : 1.0f);
421 }
422
Mathias Agopian883dffa2010-10-25 18:29:35 -0700423 /*
424 * For the buffer transformation, we apply the rotation last.
425 * Since we're transforming the texture-coordinates, we need
426 * to apply the inverse of the buffer transformation:
427 * inverse( FLIP_V -> FLIP_H -> ROT_90 )
428 * <=> inverse( ROT_90 * FLIP_H * FLIP_V )
429 * = inverse(FLIP_V) * inverse(FLIP_H) * inverse(ROT_90)
430 * = FLIP_V * FLIP_H * ROT_270
431 * <=> ROT_270 -> FLIP_H -> FLIP_V
432 *
433 * The rotation is performed first, in the texture coordinate space.
434 *
435 */
436
Mathias Agopianb661d662010-08-19 17:01:19 -0700437 struct TexCoords {
438 GLfloat u;
439 GLfloat v;
Mathias Agopian78fd5012010-04-20 14:51:04 -0700440 };
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800441
Mathias Agopianb661d662010-08-19 17:01:19 -0700442 enum {
443 // name of the corners in the texture map
444 LB = 0, // left-bottom
445 LT = 1, // left-top
446 RT = 2, // right-top
447 RB = 3 // right-bottom
448 };
449
450 // vertices in screen space
451 int vLT = LB;
452 int vLB = LT;
453 int vRB = RT;
454 int vRT = RB;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800455
Mathias Agopian78fd5012010-04-20 14:51:04 -0700456 // the texture's source is rotated
Mathias Agopianb661d662010-08-19 17:01:19 -0700457 uint32_t transform = mBufferTransform;
458 if (transform & HAL_TRANSFORM_ROT_90) {
459 vLT = RB;
460 vLB = LB;
461 vRB = LT;
462 vRT = RT;
463 }
464 if (transform & HAL_TRANSFORM_FLIP_V) {
465 swap(vLT, vLB);
Mathias Agopian3c2c54c2010-10-11 14:19:24 -0700466 swap(vRT, vRB);
Mathias Agopianb661d662010-08-19 17:01:19 -0700467 }
468 if (transform & HAL_TRANSFORM_FLIP_H) {
Mathias Agopian3c2c54c2010-10-11 14:19:24 -0700469 swap(vLT, vRT);
470 swap(vLB, vRB);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800471 }
Mathias Agopian78fd5012010-04-20 14:51:04 -0700472
Mathias Agopianb661d662010-08-19 17:01:19 -0700473 TexCoords texCoords[4];
474 texCoords[vLT].u = cl;
475 texCoords[vLT].v = ct;
476 texCoords[vLB].u = cl;
477 texCoords[vLB].v = cb;
478 texCoords[vRB].u = cr;
479 texCoords[vRB].v = cb;
480 texCoords[vRT].u = cr;
481 texCoords[vRT].v = ct;
Mathias Agopian78fd5012010-04-20 14:51:04 -0700482
Mathias Agopian0a917752010-06-14 21:20:00 -0700483 if (needsDithering()) {
484 glEnable(GL_DITHER);
485 } else {
486 glDisable(GL_DITHER);
487 }
488
Mathias Agopian78fd5012010-04-20 14:51:04 -0700489 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
490 glVertexPointer(2, GL_FLOAT, 0, mVertices);
491 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
492
Mathias Agopianb661d662010-08-19 17:01:19 -0700493 Region::const_iterator it = clip.begin();
494 Region::const_iterator const end = clip.end();
Mathias Agopian78fd5012010-04-20 14:51:04 -0700495 while (it != end) {
496 const Rect& r = *it++;
497 const GLint sy = fbHeight - (r.top + r.height());
498 glScissor(r.left, sy, r.width(), r.height());
499 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
500 }
501 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800502}
503
Mathias Agopianb661d662010-08-19 17:01:19 -0700504void LayerBase::setBufferCrop(const Rect& crop) {
505 if (!crop.isEmpty()) {
Mathias Agopianad456f92011-01-13 17:53:01 -0800506 if (mBufferCrop != crop) {
507 mBufferCrop = crop;
508 mFlinger->invalidateHwcGeometry();
509 }
Mathias Agopianb661d662010-08-19 17:01:19 -0700510 }
511}
512
513void LayerBase::setBufferTransform(uint32_t transform) {
Mathias Agopianad456f92011-01-13 17:53:01 -0800514 if (mBufferTransform != transform) {
515 mBufferTransform = transform;
516 mFlinger->invalidateHwcGeometry();
517 }
Mathias Agopianb661d662010-08-19 17:01:19 -0700518}
519
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700520void LayerBase::dump(String8& result, char* buffer, size_t SIZE) const
521{
522 const Layer::State& s(drawingState());
523 snprintf(buffer, SIZE,
524 "+ %s %p\n"
525 " "
526 "z=%9d, pos=(%4d,%4d), size=(%4d,%4d), "
527 "needsBlending=%1d, needsDithering=%1d, invalidate=%1d, "
528 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n",
529 getTypeId(), this, s.z, tx(), ty(), s.w, s.h,
530 needsBlending(), needsDithering(), contentDirty,
531 s.alpha, s.flags,
532 s.transform[0][0], s.transform[0][1],
533 s.transform[1][0], s.transform[1][1]);
534 result.append(buffer);
535}
Mathias Agopian54ba51d2009-10-26 20:12:37 -0700536
Mathias Agopian48b888a2011-01-19 16:15:53 -0800537void LayerBase::shortDump(String8& result, char* scratch, size_t size) const
538{
539 LayerBase::dump(result, scratch, size);
540}
541
542
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800543// ---------------------------------------------------------------------------
544
Mathias Agopian631f3582010-05-25 17:51:34 -0700545int32_t LayerBaseClient::sIdentity = 1;
Mathias Agopian2e123242009-06-23 20:06:46 -0700546
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800547LayerBaseClient::LayerBaseClient(SurfaceFlinger* flinger, DisplayID display,
Mathias Agopian96f08192010-06-02 23:28:45 -0700548 const sp<Client>& client)
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700549 : LayerBase(flinger, display), mClientRef(client),
Mathias Agopian948d69f2010-03-08 19:29:09 -0800550 mIdentity(uint32_t(android_atomic_inc(&sIdentity)))
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800551{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700552}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800553
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800554LayerBaseClient::~LayerBaseClient()
555{
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700556 sp<Client> c(mClientRef.promote());
Mathias Agopian96f08192010-06-02 23:28:45 -0700557 if (c != 0) {
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700558 c->detachLayer(this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800559 }
560}
561
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700562sp<LayerBaseClient::Surface> LayerBaseClient::getSurface()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800563{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700564 sp<Surface> s;
565 Mutex::Autolock _l(mLock);
566 s = mClientSurface.promote();
567 if (s == 0) {
568 s = createSurface();
569 mClientSurface = s;
570 }
571 return s;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800572}
573
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700574sp<LayerBaseClient::Surface> LayerBaseClient::createSurface() const
575{
Mathias Agopian96f08192010-06-02 23:28:45 -0700576 return new Surface(mFlinger, mIdentity,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700577 const_cast<LayerBaseClient *>(this));
578}
579
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700580void LayerBaseClient::dump(String8& result, char* buffer, size_t SIZE) const
581{
582 LayerBase::dump(result, buffer, SIZE);
583
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700584 sp<Client> client(mClientRef.promote());
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700585 snprintf(buffer, SIZE,
586 " name=%s\n"
Mathias Agopian96f08192010-06-02 23:28:45 -0700587 " client=%p, identity=%u\n",
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700588 getName().string(),
Mathias Agopian96f08192010-06-02 23:28:45 -0700589 client.get(), getIdentity());
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700590
591 result.append(buffer);
592}
593
Mathias Agopian48b888a2011-01-19 16:15:53 -0800594
595void LayerBaseClient::shortDump(String8& result, char* scratch, size_t size) const
596{
597 LayerBaseClient::dump(result, scratch, size);
598}
599
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700600// ---------------------------------------------------------------------------
601
Mathias Agopian9a112062009-04-17 19:36:26 -0700602LayerBaseClient::Surface::Surface(
603 const sp<SurfaceFlinger>& flinger,
Mathias Agopian96f08192010-06-02 23:28:45 -0700604 int identity,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700605 const sp<LayerBaseClient>& owner)
Mathias Agopian96f08192010-06-02 23:28:45 -0700606 : mFlinger(flinger), mIdentity(identity), mOwner(owner)
Mathias Agopian9a112062009-04-17 19:36:26 -0700607{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700608}
609
Mathias Agopian9a112062009-04-17 19:36:26 -0700610LayerBaseClient::Surface::~Surface()
611{
612 /*
613 * This is a good place to clean-up all client resources
614 */
615
616 // destroy client resources
617 sp<LayerBaseClient> layer = getOwner();
618 if (layer != 0) {
619 mFlinger->destroySurface(layer);
620 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700621}
622
623sp<LayerBaseClient> LayerBaseClient::Surface::getOwner() const {
624 sp<LayerBaseClient> owner(mOwner.promote());
625 return owner;
626}
627
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700628status_t LayerBaseClient::Surface::onTransact(
Mathias Agopian375f5632009-06-15 18:24:59 -0700629 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700630{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700631 return BnSurface::onTransact(code, data, reply, flags);
632}
633
Mathias Agopiana138f892010-05-21 17:24:35 -0700634sp<GraphicBuffer> LayerBaseClient::Surface::requestBuffer(int bufferIdx,
635 uint32_t w, uint32_t h, uint32_t format, uint32_t usage)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700636{
637 return NULL;
638}
639
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700640status_t LayerBaseClient::Surface::setBufferCount(int bufferCount)
641{
642 return INVALID_OPERATION;
643}
644
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800645// ---------------------------------------------------------------------------
646
647}; // namespace android