blob: 72f73f78aac803600237177d46aac45d267941c8 [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
Mathias Agopian98a121a2012-07-24 21:08:59 -0700152 // initialize the display orientation transform.
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700153 setProjection(DisplayState::eOrientationDefault, mViewport, mFrame);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700154}
155
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700156uint32_t DisplayDevice::getPageFlipCount() const {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700157 return mPageFlipCount;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800158}
159
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700160status_t DisplayDevice::compositionComplete() const {
Mathias Agopiana4912602012-07-12 14:25:33 -0700161 if (mFramebufferSurface == NULL) {
162 return NO_ERROR;
163 }
164 return mFramebufferSurface->compositionComplete();
Mathias Agopian74faca22009-09-17 16:18:16 -0700165}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700167void DisplayDevice::flip(const Region& dirty) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800168{
169 checkGLErrors();
170
171 EGLDisplay dpy = mDisplay;
172 EGLSurface surface = mSurface;
173
Mathias Agopian5e78e092009-06-11 17:19:54 -0700174#ifdef EGL_ANDROID_swap_rectangle
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700175 if (mFlags & SWAP_RECTANGLE) {
Mathias Agopianb8a55602009-06-26 19:06:36 -0700176 const Region newDirty(dirty.intersect(bounds()));
177 const Rect b(newDirty.getBounds());
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700178 eglSetSwapRectangleANDROID(dpy, surface,
179 b.left, b.top, b.width(), b.height());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800180 }
Mathias Agopian5e78e092009-06-11 17:19:54 -0700181#endif
182
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700183 mPageFlipCount++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800184}
185
Mathias Agopianda27af92012-09-13 18:17:13 -0700186void DisplayDevice::swapBuffers(HWComposer& hwc) const {
187 if (hwc.initCheck() != NO_ERROR) {
188 // no HWC, we call eglSwapBuffers()
189 eglSwapBuffers(mDisplay, mSurface);
190 } else {
191 if (hwc.hasGlesComposition(mType)) {
192 if (hwc.supportsFramebufferTarget() ||
193 mType >= DisplayDevice::DISPLAY_VIRTUAL) {
194 // as of hwc 1.1 we always call eglSwapBuffers, however,
195 // on older versions of HWC, we need to call it only on
196 // virtual displays
197 eglSwapBuffers(mDisplay, mSurface);
198 }
199 }
200 }
201}
202
203void DisplayDevice::onSwapBuffersCompleted(HWComposer& hwc) const {
204 if (hwc.initCheck() == NO_ERROR) {
205 if (hwc.supportsFramebufferTarget()) {
206 int fd = hwc.getAndResetReleaseFenceFd(mType);
207 mFramebufferSurface->setReleaseFenceFd(fd);
208 }
209 }
210}
211
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700212uint32_t DisplayDevice::getFlags() const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800213{
214 return mFlags;
215}
216
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700217void DisplayDevice::dump(String8& res) const
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800218{
Mathias Agopiana4912602012-07-12 14:25:33 -0700219 if (mFramebufferSurface != NULL) {
220 mFramebufferSurface->dump(res);
221 }
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800222}
Mathias Agopian1b031492012-06-20 17:51:20 -0700223
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700224EGLBoolean DisplayDevice::makeCurrent(EGLDisplay dpy,
225 const sp<const DisplayDevice>& hw, EGLContext ctx) {
226 EGLBoolean result = EGL_TRUE;
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700227 EGLSurface sur = eglGetCurrentSurface(EGL_DRAW);
Mathias Agopian42977342012-08-05 00:40:46 -0700228 if (sur != hw->mSurface) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700229 result = eglMakeCurrent(dpy, hw->mSurface, hw->mSurface, ctx);
230 if (result == EGL_TRUE) {
231 GLsizei w = hw->mDisplayWidth;
232 GLsizei h = hw->mDisplayHeight;
233 glViewport(0, 0, w, h);
234 glMatrixMode(GL_PROJECTION);
235 glLoadIdentity();
236 // put the origin in the left-bottom corner
237 glOrthof(0, w, 0, h, 0, 1); // l=0, r=w ; b=0, t=h
238 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700239 }
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700240 return result;
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700241}
242
Mathias Agopian1b031492012-06-20 17:51:20 -0700243// ----------------------------------------------------------------------------
244
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700245void DisplayDevice::setVisibleLayersSortedByZ(const Vector< sp<LayerBase> >& layers) {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700246 mVisibleLayersSortedByZ = layers;
Mathias Agopianef7b9c72012-08-10 15:22:19 -0700247 mSecureLayerVisible = false;
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700248 size_t count = layers.size();
249 for (size_t i=0 ; i<count ; i++) {
250 if (layers[i]->isSecure()) {
251 mSecureLayerVisible = true;
252 }
253 }
254}
255
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700256const Vector< sp<LayerBase> >& DisplayDevice::getVisibleLayersSortedByZ() const {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700257 return mVisibleLayersSortedByZ;
258}
259
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700260bool DisplayDevice::getSecureLayerVisible() const {
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700261 return mSecureLayerVisible;
262}
263
Mathias Agopiancd60f992012-08-16 16:28:27 -0700264Region DisplayDevice::getDirtyRegion(bool repaintEverything) const {
265 Region dirty;
Mathias Agopiancd60f992012-08-16 16:28:27 -0700266 if (repaintEverything) {
267 dirty.set(getBounds());
268 } else {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700269 const Transform& planeTransform(mGlobalTransform);
Mathias Agopiancd60f992012-08-16 16:28:27 -0700270 dirty = planeTransform.transform(this->dirtyRegion);
271 dirty.andSelf(getBounds());
272 }
273 return dirty;
274}
275
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700276// ----------------------------------------------------------------------------
277
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700278bool DisplayDevice::canDraw() const {
279 return mScreenAcquired;
280}
281
282void DisplayDevice::releaseScreen() const {
283 mScreenAcquired = false;
284}
285
286void DisplayDevice::acquireScreen() const {
287 mScreenAcquired = true;
288}
289
290bool DisplayDevice::isScreenAcquired() const {
291 return mScreenAcquired;
292}
293
294// ----------------------------------------------------------------------------
295
Mathias Agopian28947d72012-08-08 18:51:15 -0700296void DisplayDevice::setLayerStack(uint32_t stack) {
297 mLayerStack = stack;
298 dirtyRegion.set(bounds());
299}
300
301// ----------------------------------------------------------------------------
302
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -0700303status_t DisplayDevice::orientationToTransfrom(
Mathias Agopian1b031492012-06-20 17:51:20 -0700304 int orientation, int w, int h, Transform* tr)
305{
306 uint32_t flags = 0;
307 switch (orientation) {
Mathias Agopian3165cc22012-08-08 19:42:09 -0700308 case DisplayState::eOrientationDefault:
Mathias Agopian1b031492012-06-20 17:51:20 -0700309 flags = Transform::ROT_0;
310 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700311 case DisplayState::eOrientation90:
Mathias Agopian1b031492012-06-20 17:51:20 -0700312 flags = Transform::ROT_90;
313 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700314 case DisplayState::eOrientation180:
Mathias Agopian1b031492012-06-20 17:51:20 -0700315 flags = Transform::ROT_180;
316 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700317 case DisplayState::eOrientation270:
Mathias Agopian1b031492012-06-20 17:51:20 -0700318 flags = Transform::ROT_270;
319 break;
320 default:
321 return BAD_VALUE;
322 }
323 tr->set(flags, w, h);
324 return NO_ERROR;
325}
326
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700327void DisplayDevice::setProjection(int orientation,
328 const Rect& viewport, const Rect& frame) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700329 mOrientation = orientation;
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700330 mViewport = viewport;
331 mFrame = frame;
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700332 updateGeometryTransform();
333}
334
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700335void DisplayDevice::updateGeometryTransform() {
Mathias Agopian98a121a2012-07-24 21:08:59 -0700336 int w = mDisplayWidth;
337 int h = mDisplayHeight;
Jeff Brown6e220a62012-09-13 19:22:41 -0700338 Transform TL, TP, R, S;
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700339 if (DisplayDevice::orientationToTransfrom(
340 mOrientation, w, h, &R) == NO_ERROR) {
341 dirtyRegion.set(bounds());
Mathias Agopian1b031492012-06-20 17:51:20 -0700342
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700343 Rect viewport(mViewport);
344 Rect frame(mFrame);
345
346 if (!frame.isValid()) {
347 // the destination frame can be invalid if it has never been set,
348 // in that case we assume the whole display frame.
349 frame = Rect(w, h);
350 }
351
352 if (viewport.isEmpty()) {
353 // viewport can be invalid if it has never been set, in that case
354 // we assume the whole display size.
355 // it's also invalid to have an empty viewport, so we handle that
356 // case in the same way.
357 viewport = Rect(w, h);
358 if (R.getOrientation() & Transform::ROT_90) {
359 // viewport is always specified in the logical orientation
360 // of the display (ie: post-rotation).
361 swap(viewport.right, viewport.bottom);
362 }
363 }
364
365 float src_width = viewport.width();
366 float src_height = viewport.height();
367 float dst_width = frame.width();
368 float dst_height = frame.height();
Jesse Hall6360ec42012-09-12 13:49:10 -0700369 if (src_width != dst_width || src_height != dst_height) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700370 float sx = dst_width / src_width;
371 float sy = dst_height / src_height;
372 S.set(sx, 0, 0, sy);
373 }
Jesse Hall6360ec42012-09-12 13:49:10 -0700374
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700375 float src_x = viewport.left;
376 float src_y = viewport.top;
377 float dst_x = frame.left;
378 float dst_y = frame.top;
Jeff Brown6e220a62012-09-13 19:22:41 -0700379 TL.set(-src_x, -src_y);
380 TP.set(dst_x, dst_y);
Mathias Agopianda8d0a52012-09-04 15:05:38 -0700381
Jeff Brown6e220a62012-09-13 19:22:41 -0700382 // The viewport and frame are both in the logical orientation.
383 // Apply the logical translation, scale to physical size, apply the
384 // physical translation and finally rotate to the physical orientation.
385 mGlobalTransform = R * TP * S * TL;
Mathias Agopian1b031492012-06-20 17:51:20 -0700386 }
Mathias Agopian1b031492012-06-20 17:51:20 -0700387}