blob: 81ce27e18db1a61a872de38e3d591db2548f3775 [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 <stdio.h>
19#include <string.h>
20#include <math.h>
21
22#include <cutils/properties.h>
23
Mathias Agopian076b1cc2009-04-10 14:24:30 -070024#include <utils/RefBase.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080025#include <utils/Log.h>
26
Mathias Agopianc666cae2012-07-25 18:56:13 -070027#include <ui/DisplayInfo.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070028#include <ui/PixelFormat.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
Jamie Gennis1a4d8832012-08-02 20:11:05 -070030#include <gui/SurfaceTextureClient.h>
31
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032#include <GLES/gl.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070033#include <EGL/egl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080034#include <EGL/eglext.h>
35
Mathias Agopian076b1cc2009-04-10 14:24:30 -070036#include <hardware/gralloc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080037
Mathias Agopian1b031492012-06-20 17:51:20 -070038#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopian1b031492012-06-20 17:51:20 -070039#include "DisplayHardware/HWComposer.h"
40
Mathias Agopianda8d0a52012-09-04 15:05:38 -070041#include "clz.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070042#include "DisplayDevice.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070043#include "GLExtensions.h"
Mathias Agopianc7d14e22011-08-01 16:32:21 -070044#include "SurfaceFlinger.h"
Mathias Agopian921e6ac2012-07-23 23:11:29 -070045#include "LayerBase.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070046
Mathias Agopiana4912602012-07-12 14:25:33 -070047// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048using namespace android;
Mathias Agopiana4912602012-07-12 14:25:33 -070049// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050
51static __attribute__((noinline))
52void checkGLErrors()
53{
Mathias Agopiancbb288b2009-09-07 16:32:45 -070054 do {
55 // there could be more than one error flag
56 GLenum error = glGetError();
57 if (error == GL_NO_ERROR)
58 break;
Steve Blocke6f43dd2012-01-06 19:20:56 +000059 ALOGE("GL error 0x%04x", int(error));
Mathias Agopiancbb288b2009-09-07 16:32:45 -070060 } while(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080061}
62
Mathias Agopiana4912602012-07-12 14:25:33 -070063// ----------------------------------------------------------------------------
64
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065/*
66 * Initialize the display to the specified values.
67 *
68 */
69
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070070DisplayDevice::DisplayDevice(
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071 const sp<SurfaceFlinger>& flinger,
Mathias Agopian3ee454a2012-08-27 16:28:24 -070072 DisplayType type, const wp<IBinder>& displayToken,
Jamie Gennis1a4d8832012-08-02 20:11:05 -070073 const sp<ANativeWindow>& nativeWindow,
74 const sp<FramebufferSurface>& framebufferSurface,
Mathias Agopiana4912602012-07-12 14:25:33 -070075 EGLConfig config)
Mathias Agopian92a979a2012-08-02 18:32:23 -070076 : mFlinger(flinger),
Mathias Agopian3ee454a2012-08-27 16:28:24 -070077 mType(type), mHwcDisplayId(-1),
Jamie Gennis1a4d8832012-08-02 20:11:05 -070078 mNativeWindow(nativeWindow),
79 mFramebufferSurface(framebufferSurface),
Mathias Agopian92a979a2012-08-02 18:32:23 -070080 mDisplay(EGL_NO_DISPLAY),
81 mSurface(EGL_NO_SURFACE),
82 mContext(EGL_NO_CONTEXT),
Mathias Agopian92a979a2012-08-02 18:32:23 -070083 mDisplayWidth(), mDisplayHeight(), mFormat(),
84 mFlags(),
85 mPageFlipCount(),
Mathias Agopian92a979a2012-08-02 18:32:23 -070086 mSecureLayerVisible(false),
87 mScreenAcquired(false),
Mathias Agopianda8d0a52012-09-04 15:05:38 -070088 mLayerStack(0),
89 mOrientation()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090{
Mathias Agopiana4912602012-07-12 14:25:33 -070091 init(config);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080092}
93
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070094DisplayDevice::~DisplayDevice() {
Mathias Agopian92a979a2012-08-02 18:32:23 -070095 if (mSurface != EGL_NO_SURFACE) {
96 eglDestroySurface(mDisplay, mSurface);
97 mSurface = EGL_NO_SURFACE;
98 }
99}
100
101bool DisplayDevice::isValid() const {
102 return mFlinger != NULL;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800103}
104
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700105int DisplayDevice::getWidth() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700106 return mDisplayWidth;
107}
108
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700109int DisplayDevice::getHeight() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700110 return mDisplayHeight;
111}
112
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700113PixelFormat DisplayDevice::getFormat() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700114 return mFormat;
115}
116
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700117EGLSurface DisplayDevice::getEGLSurface() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700118 return mSurface;
119}
120
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700121void DisplayDevice::init(EGLConfig config)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122{
Mathias Agopiana4912602012-07-12 14:25:33 -0700123 ANativeWindow* const window = mNativeWindow.get();
124
Mathias Agopian61630912011-07-06 16:35:30 -0700125 int format;
Mathias Agopian61630912011-07-06 16:35:30 -0700126 window->query(window, NATIVE_WINDOW_FORMAT, &format);
Mathias Agopianb5dd9c02012-03-22 12:15:54 -0700127
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800128 /*
Mathias Agopiana4912602012-07-12 14:25:33 -0700129 * Create our display's surface
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800130 */
131
Mathias Agopiana4912602012-07-12 14:25:33 -0700132 EGLSurface surface;
133 EGLint w, h;
134 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
135 surface = eglCreateWindowSurface(display, config, window, NULL);
Mathias Agopian1b031492012-06-20 17:51:20 -0700136 eglQuerySurface(display, surface, EGL_WIDTH, &mDisplayWidth);
137 eglQuerySurface(display, surface, EGL_HEIGHT, &mDisplayHeight);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800138
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800139 mDisplay = display;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800140 mSurface = surface;
Mathias Agopiana4912602012-07-12 14:25:33 -0700141 mFormat = format;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700142 mPageFlipCount = 0;
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700143 mViewport.makeInvalid();
144 mFrame.makeInvalid();
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700145
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700146 // external displays are always considered enabled
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700147 mScreenAcquired = (mType >= DisplayDevice::NUM_DISPLAY_TYPES);
148
149 // get an h/w composer ID
150 mHwcDisplayId = mFlinger->allocateHwcDisplayId(mType);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700151
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700152 // Name the display. The name will be replaced shortly if the display
153 // was created with createDisplay().
154 switch (mType) {
155 case DISPLAY_PRIMARY:
156 mDisplayName = "Built-in Screen";
157 break;
158 case DISPLAY_EXTERNAL:
159 mDisplayName = "HDMI Screen";
160 break;
161 default:
162 mDisplayName = "Virtual Screen"; // e.g. Overlay #n
163 break;
164 }
165
Mathias Agopian98a121a2012-07-24 21:08:59 -0700166 // initialize the display orientation transform.
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700167 setProjection(DisplayState::eOrientationDefault, mViewport, mFrame);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700168}
169
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700170void DisplayDevice::setDisplayName(const String8& displayName) {
171 if (!displayName.isEmpty()) {
172 // never override the name with an empty name
173 mDisplayName = displayName;
174 }
175}
176
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700177uint32_t DisplayDevice::getPageFlipCount() const {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700178 return mPageFlipCount;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800179}
180
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700181status_t DisplayDevice::compositionComplete() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700182 if (mFramebufferSurface == NULL) {
183 return NO_ERROR;
184 }
185 return mFramebufferSurface->compositionComplete();
Mathias Agopian74faca22009-09-17 16:18:16 -0700186}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800187
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700188void DisplayDevice::flip(const Region& dirty) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800189{
190 checkGLErrors();
191
192 EGLDisplay dpy = mDisplay;
193 EGLSurface surface = mSurface;
194
Mathias Agopian5e78e092009-06-11 17:19:54 -0700195#ifdef EGL_ANDROID_swap_rectangle
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700196 if (mFlags & SWAP_RECTANGLE) {
Mathias Agopianb8a55602009-06-26 19:06:36 -0700197 const Region newDirty(dirty.intersect(bounds()));
198 const Rect b(newDirty.getBounds());
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700199 eglSetSwapRectangleANDROID(dpy, surface,
200 b.left, b.top, b.width(), b.height());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800201 }
Mathias Agopian5e78e092009-06-11 17:19:54 -0700202#endif
Mathias Agopiand8707032012-09-18 01:21:55 -0700203
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700204 mPageFlipCount++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800205}
206
Mathias Agopianda27af92012-09-13 18:17:13 -0700207void DisplayDevice::swapBuffers(HWComposer& hwc) const {
208 if (hwc.initCheck() != NO_ERROR) {
209 // no HWC, we call eglSwapBuffers()
210 eglSwapBuffers(mDisplay, mSurface);
211 } else {
Mathias Agopiand8707032012-09-18 01:21:55 -0700212 // We have a valid HWC, but not all displays can use it, in particular
213 // the virtual displays are on their own.
214 // TODO: HWC 1.2 will allow virtual displays
215 if (mType >= DisplayDevice::DISPLAY_VIRTUAL) {
216 // always call eglSwapBuffers() for virtual displays
217 eglSwapBuffers(mDisplay, mSurface);
218 } else if (hwc.supportsFramebufferTarget()) {
219 // as of hwc 1.1 we always call eglSwapBuffers if we have some
220 // GLES layers
221 if (hwc.hasGlesComposition(mType)) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700222 eglSwapBuffers(mDisplay, mSurface);
223 }
Mathias Agopiand8707032012-09-18 01:21:55 -0700224 } else {
225 // HWC doesn't have the framebuffer target, we don't call
226 // eglSwapBuffers(), since this is handled by HWComposer::commit().
Mathias Agopianda27af92012-09-13 18:17:13 -0700227 }
228 }
229}
230
231void DisplayDevice::onSwapBuffersCompleted(HWComposer& hwc) const {
232 if (hwc.initCheck() == NO_ERROR) {
233 if (hwc.supportsFramebufferTarget()) {
234 int fd = hwc.getAndResetReleaseFenceFd(mType);
235 mFramebufferSurface->setReleaseFenceFd(fd);
236 }
237 }
238}
239
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700240uint32_t DisplayDevice::getFlags() const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800241{
242 return mFlags;
243}
244
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700245EGLBoolean DisplayDevice::makeCurrent(EGLDisplay dpy,
246 const sp<const DisplayDevice>& hw, EGLContext ctx) {
247 EGLBoolean result = EGL_TRUE;
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700248 EGLSurface sur = eglGetCurrentSurface(EGL_DRAW);
Mathias Agopian42977342012-08-05 00:40:46 -0700249 if (sur != hw->mSurface) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700250 result = eglMakeCurrent(dpy, hw->mSurface, hw->mSurface, ctx);
251 if (result == EGL_TRUE) {
252 GLsizei w = hw->mDisplayWidth;
253 GLsizei h = hw->mDisplayHeight;
254 glViewport(0, 0, w, h);
255 glMatrixMode(GL_PROJECTION);
256 glLoadIdentity();
257 // put the origin in the left-bottom corner
258 glOrthof(0, w, 0, h, 0, 1); // l=0, r=w ; b=0, t=h
259 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700260 }
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700261 return result;
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700262}
263
Mathias Agopian1b031492012-06-20 17:51:20 -0700264// ----------------------------------------------------------------------------
265
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700266void DisplayDevice::setVisibleLayersSortedByZ(const Vector< sp<LayerBase> >& layers) {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700267 mVisibleLayersSortedByZ = layers;
Mathias Agopianef7b9c72012-08-10 15:22:19 -0700268 mSecureLayerVisible = false;
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700269 size_t count = layers.size();
270 for (size_t i=0 ; i<count ; i++) {
271 if (layers[i]->isSecure()) {
272 mSecureLayerVisible = true;
273 }
274 }
275}
276
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700277const Vector< sp<LayerBase> >& DisplayDevice::getVisibleLayersSortedByZ() const {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700278 return mVisibleLayersSortedByZ;
279}
280
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700281bool DisplayDevice::getSecureLayerVisible() const {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700282 return mSecureLayerVisible;
283}
284
Mathias Agopiancd60f992012-08-16 16:28:27 -0700285Region DisplayDevice::getDirtyRegion(bool repaintEverything) const {
286 Region dirty;
Mathias Agopiancd60f992012-08-16 16:28:27 -0700287 if (repaintEverything) {
288 dirty.set(getBounds());
289 } else {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700290 const Transform& planeTransform(mGlobalTransform);
Mathias Agopiancd60f992012-08-16 16:28:27 -0700291 dirty = planeTransform.transform(this->dirtyRegion);
292 dirty.andSelf(getBounds());
293 }
294 return dirty;
295}
296
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700297// ----------------------------------------------------------------------------
298
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700299bool DisplayDevice::canDraw() const {
300 return mScreenAcquired;
301}
302
303void DisplayDevice::releaseScreen() const {
304 mScreenAcquired = false;
305}
306
307void DisplayDevice::acquireScreen() const {
308 mScreenAcquired = true;
309}
310
311bool DisplayDevice::isScreenAcquired() const {
312 return mScreenAcquired;
313}
314
315// ----------------------------------------------------------------------------
316
Mathias Agopian28947d72012-08-08 18:51:15 -0700317void DisplayDevice::setLayerStack(uint32_t stack) {
318 mLayerStack = stack;
319 dirtyRegion.set(bounds());
320}
321
322// ----------------------------------------------------------------------------
323
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700324status_t DisplayDevice::orientationToTransfrom(
Mathias Agopian1b031492012-06-20 17:51:20 -0700325 int orientation, int w, int h, Transform* tr)
326{
327 uint32_t flags = 0;
328 switch (orientation) {
Mathias Agopian3165cc22012-08-08 19:42:09 -0700329 case DisplayState::eOrientationDefault:
Mathias Agopian1b031492012-06-20 17:51:20 -0700330 flags = Transform::ROT_0;
331 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700332 case DisplayState::eOrientation90:
Mathias Agopian1b031492012-06-20 17:51:20 -0700333 flags = Transform::ROT_90;
334 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700335 case DisplayState::eOrientation180:
Mathias Agopian1b031492012-06-20 17:51:20 -0700336 flags = Transform::ROT_180;
337 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700338 case DisplayState::eOrientation270:
Mathias Agopian1b031492012-06-20 17:51:20 -0700339 flags = Transform::ROT_270;
340 break;
341 default:
342 return BAD_VALUE;
343 }
344 tr->set(flags, w, h);
345 return NO_ERROR;
346}
347
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700348void DisplayDevice::setProjection(int orientation,
349 const Rect& viewport, const Rect& frame) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700350 mOrientation = orientation;
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700351 mViewport = viewport;
352 mFrame = frame;
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700353 updateGeometryTransform();
354}
355
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700356void DisplayDevice::updateGeometryTransform() {
Mathias Agopian98a121a2012-07-24 21:08:59 -0700357 int w = mDisplayWidth;
358 int h = mDisplayHeight;
Jeff Brown6e220a62012-09-13 19:22:41 -0700359 Transform TL, TP, R, S;
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700360 if (DisplayDevice::orientationToTransfrom(
361 mOrientation, w, h, &R) == NO_ERROR) {
362 dirtyRegion.set(bounds());
Mathias Agopian1b031492012-06-20 17:51:20 -0700363
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700364 Rect viewport(mViewport);
365 Rect frame(mFrame);
366
367 if (!frame.isValid()) {
368 // the destination frame can be invalid if it has never been set,
369 // in that case we assume the whole display frame.
370 frame = Rect(w, h);
371 }
372
373 if (viewport.isEmpty()) {
374 // viewport can be invalid if it has never been set, in that case
375 // we assume the whole display size.
376 // it's also invalid to have an empty viewport, so we handle that
377 // case in the same way.
378 viewport = Rect(w, h);
379 if (R.getOrientation() & Transform::ROT_90) {
380 // viewport is always specified in the logical orientation
381 // of the display (ie: post-rotation).
382 swap(viewport.right, viewport.bottom);
383 }
384 }
385
386 float src_width = viewport.width();
387 float src_height = viewport.height();
388 float dst_width = frame.width();
389 float dst_height = frame.height();
Jesse Hall6360ec42012-09-12 13:49:10 -0700390 if (src_width != dst_width || src_height != dst_height) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700391 float sx = dst_width / src_width;
392 float sy = dst_height / src_height;
393 S.set(sx, 0, 0, sy);
394 }
Jesse Hall6360ec42012-09-12 13:49:10 -0700395
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700396 float src_x = viewport.left;
397 float src_y = viewport.top;
398 float dst_x = frame.left;
399 float dst_y = frame.top;
Jeff Brown6e220a62012-09-13 19:22:41 -0700400 TL.set(-src_x, -src_y);
401 TP.set(dst_x, dst_y);
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700402
Jeff Brown6e220a62012-09-13 19:22:41 -0700403 // The viewport and frame are both in the logical orientation.
404 // Apply the logical translation, scale to physical size, apply the
405 // physical translation and finally rotate to the physical orientation.
406 mGlobalTransform = R * TP * S * TL;
Mathias Agopianeba8c682012-09-19 23:14:45 -0700407
408 const uint8_t type = mGlobalTransform.getType();
409 mNeedsFiltering = (!mGlobalTransform.preserveRects() ||
410 (type >= Transform::SCALE));
Mathias Agopian1b031492012-06-20 17:51:20 -0700411 }
Mathias Agopian1b031492012-06-20 17:51:20 -0700412}
Mathias Agopian1d12d8a2012-09-18 01:38:00 -0700413
414void DisplayDevice::dump(String8& result, char* buffer, size_t SIZE) const {
415 const Transform& tr(mGlobalTransform);
416 snprintf(buffer, SIZE,
417 "+ DisplayDevice: %s\n"
418 " type=%x, layerStack=%u, (%4dx%4d), ANativeWindow=%p, orient=%2d (type=%08x), "
419 "flips=%u, secure=%d, acquired=%d, numLayers=%u\n"
420 " v:[%d,%d,%d,%d], f:[%d,%d,%d,%d], "
421 "transform:[[%0.3f,%0.3f,%0.3f][%0.3f,%0.3f,%0.3f][%0.3f,%0.3f,%0.3f]]\n",
Mathias Agopiand56eff22012-09-19 16:25:29 -0700422 mDisplayName.string(), mType,
Mathias Agopian1d12d8a2012-09-18 01:38:00 -0700423 mLayerStack, mDisplayWidth, mDisplayHeight, mNativeWindow.get(),
424 mOrientation, tr.getType(), getPageFlipCount(),
425 mSecureLayerVisible, mScreenAcquired, mVisibleLayersSortedByZ.size(),
426 mViewport.left, mViewport.top, mViewport.right, mViewport.bottom,
427 mFrame.left, mFrame.top, mFrame.right, mFrame.bottom,
428 tr[0][0], tr[1][0], tr[2][0],
429 tr[0][1], tr[1][1], tr[2][1],
430 tr[0][2], tr[1][2], tr[2][2]);
431
432 result.append(buffer);
433
434 String8 fbtargetDump;
435 if (mFramebufferSurface != NULL) {
436 mFramebufferSurface->dump(fbtargetDump);
437 result.append(fbtargetDump);
438 }
439}