1 /*
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
17 #include <stdlib.h>
18 #include <stdint.h>
19 #include <sys/types.h>
20
21 #include <utils/Errors.h>
22 #include <utils/Log.h>
23 #include <binder/IPCThreadState.h>
24 #include <binder/IServiceManager.h>
25
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"
33 #include "SurfaceFlinger.h"
34 #include "DisplayHardware/DisplayHardware.h"
35
36
37 namespace android {
38
39 // ---------------------------------------------------------------------------
40
41 const uint32_t LayerBase::typeInfo = 1;
42 const char* const LayerBase::typeID = "LayerBase";
43
44 const uint32_t LayerBaseClient::typeInfo = LayerBase::typeInfo | 2;
45 const char* const LayerBaseClient::typeID = "LayerBaseClient";
46
47 // ---------------------------------------------------------------------------
48
LayerBase(SurfaceFlinger * flinger,DisplayID display)49 LayerBase::LayerBase(SurfaceFlinger* flinger, DisplayID display)
50 : dpy(display), contentDirty(false),
51 mFlinger(flinger),
52 mTransformed(false),
53 mUseLinearFiltering(false),
54 mOrientation(0),
55 mTransactionFlags(0),
56 mPremultipliedAlpha(true),
57 mInvalidate(0)
58 {
59 const DisplayHardware& hw(flinger->graphicPlane(0).displayHardware());
60 mFlags = hw.getFlags();
61 }
62
~LayerBase()63 LayerBase::~LayerBase()
64 {
65 }
66
graphicPlane(int dpy) const67 const GraphicPlane& LayerBase::graphicPlane(int dpy) const
68 {
69 return mFlinger->graphicPlane(dpy);
70 }
71
graphicPlane(int dpy)72 GraphicPlane& LayerBase::graphicPlane(int dpy)
73 {
74 return mFlinger->graphicPlane(dpy);
75 }
76
initStates(uint32_t w,uint32_t h,uint32_t flags)77 void LayerBase::initStates(uint32_t w, uint32_t h, uint32_t flags)
78 {
79 uint32_t layerFlags = 0;
80 if (flags & ISurfaceComposer::eHidden)
81 layerFlags = ISurfaceComposer::eLayerHidden;
82
83 if (flags & ISurfaceComposer::eNonPremultiplied)
84 mPremultipliedAlpha = false;
85
86 mCurrentState.z = 0;
87 mCurrentState.w = w;
88 mCurrentState.h = h;
89 mCurrentState.requested_w = w;
90 mCurrentState.requested_h = h;
91 mCurrentState.alpha = 0xFF;
92 mCurrentState.flags = layerFlags;
93 mCurrentState.sequence = 0;
94 mCurrentState.transform.set(0, 0);
95
96 // drawing state & current state are identical
97 mDrawingState = mCurrentState;
98 }
99
commitTransaction()100 void LayerBase::commitTransaction() {
101 mDrawingState = mCurrentState;
102 }
forceVisibilityTransaction()103 void LayerBase::forceVisibilityTransaction() {
104 // this can be called without SurfaceFlinger.mStateLock, but if we
105 // can atomically increment the sequence number, it doesn't matter.
106 android_atomic_inc(&mCurrentState.sequence);
107 requestTransaction();
108 }
requestTransaction()109 bool LayerBase::requestTransaction() {
110 int32_t old = setTransactionFlags(eTransactionNeeded);
111 return ((old & eTransactionNeeded) == 0);
112 }
getTransactionFlags(uint32_t flags)113 uint32_t LayerBase::getTransactionFlags(uint32_t flags) {
114 return android_atomic_and(~flags, &mTransactionFlags) & flags;
115 }
setTransactionFlags(uint32_t flags)116 uint32_t LayerBase::setTransactionFlags(uint32_t flags) {
117 return android_atomic_or(flags, &mTransactionFlags);
118 }
119
setPosition(int32_t x,int32_t y)120 bool LayerBase::setPosition(int32_t x, int32_t y) {
121 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y)
122 return false;
123 mCurrentState.sequence++;
124 mCurrentState.transform.set(x, y);
125 requestTransaction();
126 return true;
127 }
setLayer(uint32_t z)128 bool LayerBase::setLayer(uint32_t z) {
129 if (mCurrentState.z == z)
130 return false;
131 mCurrentState.sequence++;
132 mCurrentState.z = z;
133 requestTransaction();
134 return true;
135 }
setSize(uint32_t w,uint32_t h)136 bool LayerBase::setSize(uint32_t w, uint32_t h) {
137 if (mCurrentState.requested_w == w && mCurrentState.requested_h == h)
138 return false;
139 mCurrentState.requested_w = w;
140 mCurrentState.requested_h = h;
141 requestTransaction();
142 return true;
143 }
setAlpha(uint8_t alpha)144 bool LayerBase::setAlpha(uint8_t alpha) {
145 if (mCurrentState.alpha == alpha)
146 return false;
147 mCurrentState.sequence++;
148 mCurrentState.alpha = alpha;
149 requestTransaction();
150 return true;
151 }
setMatrix(const layer_state_t::matrix22_t & matrix)152 bool LayerBase::setMatrix(const layer_state_t::matrix22_t& matrix) {
153 // TODO: check the matrix has changed
154 mCurrentState.sequence++;
155 mCurrentState.transform.set(
156 matrix.dsdx, matrix.dsdy, matrix.dtdx, matrix.dtdy);
157 requestTransaction();
158 return true;
159 }
setTransparentRegionHint(const Region & transparent)160 bool LayerBase::setTransparentRegionHint(const Region& transparent) {
161 // TODO: check the region has changed
162 mCurrentState.sequence++;
163 mCurrentState.transparentRegion = transparent;
164 requestTransaction();
165 return true;
166 }
setFlags(uint8_t flags,uint8_t mask)167 bool LayerBase::setFlags(uint8_t flags, uint8_t mask) {
168 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
169 if (mCurrentState.flags == newFlags)
170 return false;
171 mCurrentState.sequence++;
172 mCurrentState.flags = newFlags;
173 requestTransaction();
174 return true;
175 }
176
visibleBounds() const177 Rect LayerBase::visibleBounds() const
178 {
179 return mTransformedBounds;
180 }
181
setVisibleRegion(const Region & visibleRegion)182 void LayerBase::setVisibleRegion(const Region& visibleRegion) {
183 // always called from main thread
184 visibleRegionScreen = visibleRegion;
185 }
186
setCoveredRegion(const Region & coveredRegion)187 void LayerBase::setCoveredRegion(const Region& coveredRegion) {
188 // always called from main thread
189 coveredRegionScreen = coveredRegion;
190 }
191
doTransaction(uint32_t flags)192 uint32_t LayerBase::doTransaction(uint32_t flags)
193 {
194 const Layer::State& front(drawingState());
195 const Layer::State& temp(currentState());
196
197 if ((front.requested_w != temp.requested_w) ||
198 (front.requested_h != temp.requested_h)) {
199 // resize the layer, set the physical size to the requested size
200 Layer::State& editTemp(currentState());
201 editTemp.w = temp.requested_w;
202 editTemp.h = temp.requested_h;
203 }
204
205 if ((front.w != temp.w) || (front.h != temp.h)) {
206 // invalidate and recompute the visible regions if needed
207 flags |= Layer::eVisibleRegion;
208 this->contentDirty = true;
209 }
210
211 if (temp.sequence != front.sequence) {
212 // invalidate and recompute the visible regions if needed
213 flags |= eVisibleRegion;
214 this->contentDirty = true;
215
216 const bool linearFiltering = mUseLinearFiltering;
217 mUseLinearFiltering = false;
218 if (!(mFlags & DisplayHardware::SLOW_CONFIG)) {
219 // we may use linear filtering, if the matrix scales us
220 const uint8_t type = temp.transform.getType();
221 if (!temp.transform.preserveRects() || (type >= Transform::SCALE)) {
222 mUseLinearFiltering = true;
223 }
224 }
225 }
226
227 // Commit the transaction
228 commitTransaction();
229 return flags;
230 }
231
validateVisibility(const Transform & planeTransform)232 void LayerBase::validateVisibility(const Transform& planeTransform)
233 {
234 const Layer::State& s(drawingState());
235 const Transform tr(planeTransform * s.transform);
236 const bool transformed = tr.transformed();
237
238 uint32_t w = s.w;
239 uint32_t h = s.h;
240 tr.transform(mVertices[0], 0, 0);
241 tr.transform(mVertices[1], 0, h);
242 tr.transform(mVertices[2], w, h);
243 tr.transform(mVertices[3], w, 0);
244 if (UNLIKELY(transformed)) {
245 // NOTE: here we could also punt if we have too many rectangles
246 // in the transparent region
247 if (tr.preserveRects()) {
248 // transform the transparent region
249 transparentRegionScreen = tr.transform(s.transparentRegion);
250 } else {
251 // transformation too complex, can't do the transparent region
252 // optimization.
253 transparentRegionScreen.clear();
254 }
255 } else {
256 transparentRegionScreen = s.transparentRegion;
257 }
258
259 // cache a few things...
260 mOrientation = tr.getOrientation();
261 mTransformedBounds = tr.makeBounds(w, h);
262 mTransformed = transformed;
263 mLeft = tr.tx();
264 mTop = tr.ty();
265 }
266
lockPageFlip(bool & recomputeVisibleRegions)267 void LayerBase::lockPageFlip(bool& recomputeVisibleRegions)
268 {
269 }
270
unlockPageFlip(const Transform & planeTransform,Region & outDirtyRegion)271 void LayerBase::unlockPageFlip(
272 const Transform& planeTransform, Region& outDirtyRegion)
273 {
274 if ((android_atomic_and(~1, &mInvalidate)&1) == 1) {
275 outDirtyRegion.orSelf(visibleRegionScreen);
276 }
277 }
278
finishPageFlip()279 void LayerBase::finishPageFlip()
280 {
281 }
282
invalidate()283 void LayerBase::invalidate()
284 {
285 if ((android_atomic_or(1, &mInvalidate)&1) == 0) {
286 mFlinger->signalEvent();
287 }
288 }
289
drawRegion(const Region & reg) const290 void LayerBase::drawRegion(const Region& reg) const
291 {
292 Region::const_iterator it = reg.begin();
293 Region::const_iterator const end = reg.end();
294 if (it != end) {
295 Rect r;
296 const DisplayHardware& hw(graphicPlane(0).displayHardware());
297 const int32_t fbWidth = hw.getWidth();
298 const int32_t fbHeight = hw.getHeight();
299 const GLshort vertices[][2] = { { 0, 0 }, { fbWidth, 0 },
300 { fbWidth, fbHeight }, { 0, fbHeight } };
301 glVertexPointer(2, GL_SHORT, 0, vertices);
302 while (it != end) {
303 const Rect& r = *it++;
304 const GLint sy = fbHeight - (r.top + r.height());
305 glScissor(r.left, sy, r.width(), r.height());
306 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
307 }
308 }
309 }
310
draw(const Region & inClip) const311 void LayerBase::draw(const Region& inClip) const
312 {
313 // invalidate the region we'll update
314 Region clip(inClip); // copy-on-write, so no-op most of the time
315
316 // Remove the transparent area from the clipping region
317 const State& s = drawingState();
318 if (LIKELY(!s.transparentRegion.isEmpty())) {
319 clip.subtract(transparentRegionScreen);
320 if (clip.isEmpty()) {
321 // usually this won't happen because this should be taken care of
322 // by SurfaceFlinger::computeVisibleRegions()
323 return;
324 }
325 }
326
327 // reset GL state
328 glEnable(GL_SCISSOR_TEST);
329
330 onDraw(clip);
331
332 /*
333 glDisable(GL_TEXTURE_2D);
334 glDisable(GL_DITHER);
335 glEnable(GL_BLEND);
336 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
337 glColor4x(0, 0x8000, 0, 0x10000);
338 drawRegion(transparentRegionScreen);
339 glDisable(GL_BLEND);
340 */
341 }
342
createTexture() const343 GLuint LayerBase::createTexture() const
344 {
345 GLuint textureName = -1;
346 glGenTextures(1, &textureName);
347 glBindTexture(GL_TEXTURE_2D, textureName);
348 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
349 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
350 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
351 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
352 return textureName;
353 }
354
clearWithOpenGL(const Region & clip,GLclampx red,GLclampx green,GLclampx blue,GLclampx alpha) const355 void LayerBase::clearWithOpenGL(const Region& clip, GLclampx red,
356 GLclampx green, GLclampx blue,
357 GLclampx alpha) const
358 {
359 const DisplayHardware& hw(graphicPlane(0).displayHardware());
360 const uint32_t fbHeight = hw.getHeight();
361 glColor4x(red,green,blue,alpha);
362 glDisable(GL_TEXTURE_2D);
363 glDisable(GL_BLEND);
364 glDisable(GL_DITHER);
365
366 Region::const_iterator it = clip.begin();
367 Region::const_iterator const end = clip.end();
368 glEnable(GL_SCISSOR_TEST);
369 glVertexPointer(2, GL_FIXED, 0, mVertices);
370 while (it != end) {
371 const Rect& r = *it++;
372 const GLint sy = fbHeight - (r.top + r.height());
373 glScissor(r.left, sy, r.width(), r.height());
374 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
375 }
376 }
377
clearWithOpenGL(const Region & clip) const378 void LayerBase::clearWithOpenGL(const Region& clip) const
379 {
380 clearWithOpenGL(clip,0,0,0,0);
381 }
382
drawWithOpenGL(const Region & clip,const Texture & texture) const383 void LayerBase::drawWithOpenGL(const Region& clip, const Texture& texture) const
384 {
385 const DisplayHardware& hw(graphicPlane(0).displayHardware());
386 const uint32_t fbHeight = hw.getHeight();
387 const State& s(drawingState());
388
389 // bind our texture
390 validateTexture(texture.name);
391 uint32_t width = texture.width;
392 uint32_t height = texture.height;
393
394 glEnable(GL_TEXTURE_2D);
395
396 if (UNLIKELY(s.alpha < 0xFF)) {
397 // We have an alpha-modulation. We need to modulate all
398 // texture components by alpha because we're always using
399 // premultiplied alpha.
400
401 // If the texture doesn't have an alpha channel we can
402 // use REPLACE and switch to non premultiplied alpha
403 // blending (SRCA/ONE_MINUS_SRCA).
404
405 GLenum env, src;
406 if (needsBlending()) {
407 env = GL_MODULATE;
408 src = mPremultipliedAlpha ? GL_ONE : GL_SRC_ALPHA;
409 } else {
410 env = GL_REPLACE;
411 src = GL_SRC_ALPHA;
412 }
413 const GGLfixed alpha = (s.alpha << 16)/255;
414 glColor4x(alpha, alpha, alpha, alpha);
415 glEnable(GL_BLEND);
416 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
417 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, env);
418 } else {
419 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
420 glColor4x(0x10000, 0x10000, 0x10000, 0x10000);
421 if (needsBlending()) {
422 GLenum src = mPremultipliedAlpha ? GL_ONE : GL_SRC_ALPHA;
423 glEnable(GL_BLEND);
424 glBlendFunc(src, GL_ONE_MINUS_SRC_ALPHA);
425 } else {
426 glDisable(GL_BLEND);
427 }
428 }
429
430 Region::const_iterator it = clip.begin();
431 Region::const_iterator const end = clip.end();
432 if (UNLIKELY(transformed()
433 || !(mFlags & DisplayHardware::DRAW_TEXTURE_EXTENSION) ))
434 {
435 //StopWatch watch("GL transformed");
436 const GLfixed texCoords[4][2] = {
437 { 0, 0 },
438 { 0, 0x10000 },
439 { 0x10000, 0x10000 },
440 { 0x10000, 0 }
441 };
442
443 glMatrixMode(GL_TEXTURE);
444 glLoadIdentity();
445
446 // the texture's source is rotated
447 if (texture.transform == HAL_TRANSFORM_ROT_90) {
448 // TODO: handle the other orientations
449 glTranslatef(0, 1, 0);
450 glRotatef(-90, 0, 0, 1);
451 }
452
453 if (texture.NPOTAdjust) {
454 glScalef(texture.wScale, texture.hScale, 1.0f);
455 }
456
457 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
458 glVertexPointer(2, GL_FIXED, 0, mVertices);
459 glTexCoordPointer(2, GL_FIXED, 0, texCoords);
460
461 while (it != end) {
462 const Rect& r = *it++;
463 const GLint sy = fbHeight - (r.top + r.height());
464 glScissor(r.left, sy, r.width(), r.height());
465 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
466 }
467 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
468 } else {
469 GLint crop[4] = { 0, height, width, -height };
470 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
471 int x = tx();
472 int y = ty();
473 y = fbHeight - (y + height);
474 while (it != end) {
475 const Rect& r = *it++;
476 const GLint sy = fbHeight - (r.top + r.height());
477 glScissor(r.left, sy, r.width(), r.height());
478 glDrawTexiOES(x, y, 0, width, height);
479 }
480 }
481 }
482
validateTexture(GLint textureName) const483 void LayerBase::validateTexture(GLint textureName) const
484 {
485 glBindTexture(GL_TEXTURE_2D, textureName);
486 // TODO: reload the texture if needed
487 // this is currently done in loadTexture() below
488 if (mUseLinearFiltering) {
489 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
490 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
491 } else {
492 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
493 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
494 }
495
496 if (needsDithering()) {
497 glEnable(GL_DITHER);
498 } else {
499 glDisable(GL_DITHER);
500 }
501 }
502
loadTexture(Texture * texture,const Region & dirty,const GGLSurface & t) const503 void LayerBase::loadTexture(Texture* texture,
504 const Region& dirty, const GGLSurface& t) const
505 {
506 if (texture->name == -1U) {
507 // uh?
508 return;
509 }
510
511 glBindTexture(GL_TEXTURE_2D, texture->name);
512
513 /*
514 * In OpenGL ES we can't specify a stride with glTexImage2D (however,
515 * GL_UNPACK_ALIGNMENT is a limited form of stride).
516 * So if the stride here isn't representable with GL_UNPACK_ALIGNMENT, we
517 * need to do something reasonable (here creating a bigger texture).
518 *
519 * extra pixels = (((stride - width) * pixelsize) / GL_UNPACK_ALIGNMENT);
520 *
521 * This situation doesn't happen often, but some h/w have a limitation
522 * for their framebuffer (eg: must be multiple of 8 pixels), and
523 * we need to take that into account when using these buffers as
524 * textures.
525 *
526 * This should never be a problem with POT textures
527 */
528
529 int unpack = __builtin_ctz(t.stride * bytesPerPixel(t.format));
530 unpack = 1 << ((unpack > 3) ? 3 : unpack);
531 glPixelStorei(GL_UNPACK_ALIGNMENT, unpack);
532
533 /*
534 * round to POT if needed
535 */
536 if (!(mFlags & DisplayHardware::NPOT_EXTENSION)) {
537 texture->NPOTAdjust = true;
538 }
539
540 if (texture->NPOTAdjust) {
541 // find the smallest power-of-two that will accommodate our surface
542 texture->potWidth = 1 << (31 - clz(t.width));
543 texture->potHeight = 1 << (31 - clz(t.height));
544 if (texture->potWidth < t.width) texture->potWidth <<= 1;
545 if (texture->potHeight < t.height) texture->potHeight <<= 1;
546 texture->wScale = float(t.width) / texture->potWidth;
547 texture->hScale = float(t.height) / texture->potHeight;
548 } else {
549 texture->potWidth = t.width;
550 texture->potHeight = t.height;
551 }
552
553 Rect bounds(dirty.bounds());
554 GLvoid* data = 0;
555 if (texture->width != t.width || texture->height != t.height) {
556 texture->width = t.width;
557 texture->height = t.height;
558
559 // texture size changed, we need to create a new one
560 bounds.set(Rect(t.width, t.height));
561 if (t.width == texture->potWidth &&
562 t.height == texture->potHeight) {
563 // we can do it one pass
564 data = t.data;
565 }
566
567 if (t.format == GGL_PIXEL_FORMAT_RGB_565) {
568 glTexImage2D(GL_TEXTURE_2D, 0,
569 GL_RGB, texture->potWidth, texture->potHeight, 0,
570 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, data);
571 } else if (t.format == GGL_PIXEL_FORMAT_RGBA_4444) {
572 glTexImage2D(GL_TEXTURE_2D, 0,
573 GL_RGBA, texture->potWidth, texture->potHeight, 0,
574 GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4, data);
575 } else if (t.format == GGL_PIXEL_FORMAT_RGBA_8888 ||
576 t.format == GGL_PIXEL_FORMAT_RGBX_8888) {
577 glTexImage2D(GL_TEXTURE_2D, 0,
578 GL_RGBA, texture->potWidth, texture->potHeight, 0,
579 GL_RGBA, GL_UNSIGNED_BYTE, data);
580 } else if ( t.format == GGL_PIXEL_FORMAT_YCbCr_422_SP ||
581 t.format == GGL_PIXEL_FORMAT_YCbCr_420_SP) {
582 // just show the Y plane of YUV buffers
583 glTexImage2D(GL_TEXTURE_2D, 0,
584 GL_LUMINANCE, texture->potWidth, texture->potHeight, 0,
585 GL_LUMINANCE, GL_UNSIGNED_BYTE, data);
586 } else {
587 // oops, we don't handle this format!
588 LOGE("layer %p, texture=%d, using format %d, which is not "
589 "supported by the GL", this, texture->name, t.format);
590 }
591 }
592 if (!data) {
593 if (t.format == GGL_PIXEL_FORMAT_RGB_565) {
594 glTexSubImage2D(GL_TEXTURE_2D, 0,
595 0, bounds.top, t.width, bounds.height(),
596 GL_RGB, GL_UNSIGNED_SHORT_5_6_5,
597 t.data + bounds.top*t.stride*2);
598 } else if (t.format == GGL_PIXEL_FORMAT_RGBA_4444) {
599 glTexSubImage2D(GL_TEXTURE_2D, 0,
600 0, bounds.top, t.width, bounds.height(),
601 GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4,
602 t.data + bounds.top*t.stride*2);
603 } else if (t.format == GGL_PIXEL_FORMAT_RGBA_8888 ||
604 t.format == GGL_PIXEL_FORMAT_RGBX_8888) {
605 glTexSubImage2D(GL_TEXTURE_2D, 0,
606 0, bounds.top, t.width, bounds.height(),
607 GL_RGBA, GL_UNSIGNED_BYTE,
608 t.data + bounds.top*t.stride*4);
609 } else if ( t.format == GGL_PIXEL_FORMAT_YCbCr_422_SP ||
610 t.format == GGL_PIXEL_FORMAT_YCbCr_420_SP) {
611 // just show the Y plane of YUV buffers
612 glTexSubImage2D(GL_TEXTURE_2D, 0,
613 0, bounds.top, t.width, bounds.height(),
614 GL_LUMINANCE, GL_UNSIGNED_BYTE,
615 t.data + bounds.top*t.stride);
616 }
617 }
618 }
619
initializeEglImage(const sp<GraphicBuffer> & buffer,Texture * texture)620 status_t LayerBase::initializeEglImage(
621 const sp<GraphicBuffer>& buffer, Texture* texture)
622 {
623 status_t err = NO_ERROR;
624
625 // we need to recreate the texture
626 EGLDisplay dpy(mFlinger->graphicPlane(0).getEGLDisplay());
627
628 // free the previous image
629 if (texture->image != EGL_NO_IMAGE_KHR) {
630 eglDestroyImageKHR(dpy, texture->image);
631 texture->image = EGL_NO_IMAGE_KHR;
632 }
633
634 // construct an EGL_NATIVE_BUFFER_ANDROID
635 android_native_buffer_t* clientBuf = buffer->getNativeBuffer();
636
637 // create the new EGLImageKHR
638 const EGLint attrs[] = {
639 EGL_IMAGE_PRESERVED_KHR, EGL_TRUE,
640 EGL_NONE, EGL_NONE
641 };
642 texture->image = eglCreateImageKHR(
643 dpy, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_ANDROID,
644 (EGLClientBuffer)clientBuf, attrs);
645
646 LOGE_IF(texture->image == EGL_NO_IMAGE_KHR,
647 "eglCreateImageKHR() failed. err=0x%4x",
648 eglGetError());
649
650 if (texture->image != EGL_NO_IMAGE_KHR) {
651 glBindTexture(GL_TEXTURE_2D, texture->name);
652 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D,
653 (GLeglImageOES)texture->image);
654 GLint error = glGetError();
655 if (UNLIKELY(error != GL_NO_ERROR)) {
656 // this failed, for instance, because we don't support NPOT.
657 // FIXME: do something!
658 LOGE("layer=%p, glEGLImageTargetTexture2DOES(%p) "
659 "failed err=0x%04x",
660 this, texture->image, error);
661 mFlags &= ~DisplayHardware::DIRECT_TEXTURE;
662 err = INVALID_OPERATION;
663 } else {
664 // Everything went okay!
665 texture->NPOTAdjust = false;
666 texture->dirty = false;
667 texture->width = clientBuf->width;
668 texture->height = clientBuf->height;
669 }
670 } else {
671 err = INVALID_OPERATION;
672 }
673 return err;
674 }
675
676
677 // ---------------------------------------------------------------------------
678
679 int32_t LayerBaseClient::sIdentity = 0;
680
LayerBaseClient(SurfaceFlinger * flinger,DisplayID display,const sp<Client> & client,int32_t i)681 LayerBaseClient::LayerBaseClient(SurfaceFlinger* flinger, DisplayID display,
682 const sp<Client>& client, int32_t i)
683 : LayerBase(flinger, display), lcblk(NULL), client(client),
684 mIndex(i), mIdentity(uint32_t(android_atomic_inc(&sIdentity)))
685 {
686 lcblk = new SharedBufferServer(
687 client->ctrlblk, i, NUM_BUFFERS,
688 mIdentity);
689 }
690
onFirstRef()691 void LayerBaseClient::onFirstRef()
692 {
693 sp<Client> client(this->client.promote());
694 if (client != 0) {
695 client->bindLayer(this, mIndex);
696 }
697 }
698
~LayerBaseClient()699 LayerBaseClient::~LayerBaseClient()
700 {
701 sp<Client> client(this->client.promote());
702 if (client != 0) {
703 client->free(mIndex);
704 }
705 delete lcblk;
706 }
707
serverIndex() const708 int32_t LayerBaseClient::serverIndex() const
709 {
710 sp<Client> client(this->client.promote());
711 if (client != 0) {
712 return (client->cid<<16)|mIndex;
713 }
714 return 0xFFFF0000 | mIndex;
715 }
716
getSurface()717 sp<LayerBaseClient::Surface> LayerBaseClient::getSurface()
718 {
719 sp<Surface> s;
720 Mutex::Autolock _l(mLock);
721 s = mClientSurface.promote();
722 if (s == 0) {
723 s = createSurface();
724 mClientSurface = s;
725 }
726 return s;
727 }
728
createSurface() const729 sp<LayerBaseClient::Surface> LayerBaseClient::createSurface() const
730 {
731 return new Surface(mFlinger, clientIndex(), mIdentity,
732 const_cast<LayerBaseClient *>(this));
733 }
734
735 // called with SurfaceFlinger::mStateLock as soon as the layer is entered
736 // in the purgatory list
onRemoved()737 void LayerBaseClient::onRemoved()
738 {
739 // wake up the condition
740 lcblk->setStatus(NO_INIT);
741 }
742
743 // ---------------------------------------------------------------------------
744
Surface(const sp<SurfaceFlinger> & flinger,SurfaceID id,int identity,const sp<LayerBaseClient> & owner)745 LayerBaseClient::Surface::Surface(
746 const sp<SurfaceFlinger>& flinger,
747 SurfaceID id, int identity,
748 const sp<LayerBaseClient>& owner)
749 : mFlinger(flinger), mToken(id), mIdentity(identity), mOwner(owner)
750 {
751 }
752
~Surface()753 LayerBaseClient::Surface::~Surface()
754 {
755 /*
756 * This is a good place to clean-up all client resources
757 */
758
759 // destroy client resources
760 sp<LayerBaseClient> layer = getOwner();
761 if (layer != 0) {
762 mFlinger->destroySurface(layer);
763 }
764 }
765
getOwner() const766 sp<LayerBaseClient> LayerBaseClient::Surface::getOwner() const {
767 sp<LayerBaseClient> owner(mOwner.promote());
768 return owner;
769 }
770
onTransact(uint32_t code,const Parcel & data,Parcel * reply,uint32_t flags)771 status_t LayerBaseClient::Surface::onTransact(
772 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
773 {
774 switch (code) {
775 case REGISTER_BUFFERS:
776 case UNREGISTER_BUFFERS:
777 case CREATE_OVERLAY:
778 {
779 if (!mFlinger->mAccessSurfaceFlinger.checkCalling()) {
780 IPCThreadState* ipc = IPCThreadState::self();
781 const int pid = ipc->getCallingPid();
782 const int uid = ipc->getCallingUid();
783 LOGE("Permission Denial: "
784 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
785 return PERMISSION_DENIED;
786 }
787 }
788 }
789 return BnSurface::onTransact(code, data, reply, flags);
790 }
791
requestBuffer(int index,int usage)792 sp<GraphicBuffer> LayerBaseClient::Surface::requestBuffer(int index, int usage)
793 {
794 return NULL;
795 }
796
registerBuffers(const ISurface::BufferHeap & buffers)797 status_t LayerBaseClient::Surface::registerBuffers(
798 const ISurface::BufferHeap& buffers)
799 {
800 return INVALID_OPERATION;
801 }
802
postBuffer(ssize_t offset)803 void LayerBaseClient::Surface::postBuffer(ssize_t offset)
804 {
805 }
806
unregisterBuffers()807 void LayerBaseClient::Surface::unregisterBuffers()
808 {
809 }
810
createOverlay(uint32_t w,uint32_t h,int32_t format)811 sp<OverlayRef> LayerBaseClient::Surface::createOverlay(
812 uint32_t w, uint32_t h, int32_t format)
813 {
814 return NULL;
815 };
816
817 // ---------------------------------------------------------------------------
818
819 }; // namespace android
820