blob: 329c052708ac00938a9e6e2cc3b223b470d9b483 [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 Agopian076b1cc2009-04-10 14:24:30 -070027#include <ui/PixelFormat.h>
Mathias Agopian0926f502009-05-04 14:17:04 -070028#include <ui/FramebufferNativeWindow.h>
Mathias Agopian6cf50a72009-08-06 16:05:39 -070029#include <ui/EGLUtils.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080030
31#include <GLES/gl.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070032#include <EGL/egl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033#include <EGL/eglext.h>
34
Mathias Agopian076b1cc2009-04-10 14:24:30 -070035#include <pixelflinger/pixelflinger.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036
37#include "DisplayHardware/DisplayHardware.h"
38
Mathias Agopian076b1cc2009-04-10 14:24:30 -070039#include <hardware/gralloc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080040
Mathias Agopian1f7bec62010-06-25 18:02:21 -070041#include "GLExtensions.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070042#include "HWComposer.h"
Mathias Agopianc7d14e22011-08-01 16:32:21 -070043#include "SurfaceFlinger.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070044
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080045using namespace android;
46
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047
48static __attribute__((noinline))
49void checkGLErrors()
50{
Mathias Agopiancbb288b2009-09-07 16:32:45 -070051 do {
52 // there could be more than one error flag
53 GLenum error = glGetError();
54 if (error == GL_NO_ERROR)
55 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056 LOGE("GL error 0x%04x", int(error));
Mathias Agopiancbb288b2009-09-07 16:32:45 -070057 } while(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058}
59
60static __attribute__((noinline))
61void checkEGLErrors(const char* token)
62{
63 EGLint error = eglGetError();
Mathias Agopiancbb288b2009-09-07 16:32:45 -070064 if (error && error != EGL_SUCCESS) {
65 LOGE("%s: EGL error 0x%04x (%s)",
Mathias Agopian0928e312009-08-07 16:38:10 -070066 token, int(error), EGLUtils::strerror(error));
Mathias Agopiancbb288b2009-09-07 16:32:45 -070067 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080068}
69
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080070/*
71 * Initialize the display to the specified values.
72 *
73 */
74
75DisplayHardware::DisplayHardware(
76 const sp<SurfaceFlinger>& flinger,
77 uint32_t dpy)
Mathias Agopian1f7bec62010-06-25 18:02:21 -070078 : DisplayHardwareBase(flinger, dpy),
Mathias Agopianc7d14e22011-08-01 16:32:21 -070079 mFlinger(flinger), mFlags(0), mHwc(0)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080080{
81 init(dpy);
82}
83
84DisplayHardware::~DisplayHardware()
85{
86 fini();
87}
88
89float DisplayHardware::getDpiX() const { return mDpiX; }
90float DisplayHardware::getDpiY() const { return mDpiY; }
91float DisplayHardware::getDensity() const { return mDensity; }
92float DisplayHardware::getRefreshRate() const { return mRefreshRate; }
93int DisplayHardware::getWidth() const { return mWidth; }
94int DisplayHardware::getHeight() const { return mHeight; }
95PixelFormat DisplayHardware::getFormat() const { return mFormat; }
Mathias Agopianca99fb82010-04-14 16:43:44 -070096uint32_t DisplayHardware::getMaxTextureSize() const { return mMaxTextureSize; }
Mathias Agopian3d64e732011-04-18 15:59:24 -070097
98uint32_t DisplayHardware::getMaxViewportDims() const {
99 return mMaxViewportDims[0] < mMaxViewportDims[1] ?
100 mMaxViewportDims[0] : mMaxViewportDims[1];
101}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102
Mathias Agopian61630912011-07-06 16:35:30 -0700103static status_t selectConfigForPixelFormat(
104 EGLDisplay dpy,
105 EGLint const* attrs,
106 PixelFormat format,
107 EGLConfig* outConfig)
108{
109 EGLConfig config = NULL;
110 EGLint numConfigs = -1, n=0;
111 eglGetConfigs(dpy, NULL, 0, &numConfigs);
112 EGLConfig* const configs = new EGLConfig[numConfigs];
113 eglChooseConfig(dpy, attrs, configs, numConfigs, &n);
114 for (int i=0 ; i<n ; i++) {
115 EGLint nativeVisualId = 0;
116 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId);
117 if (nativeVisualId>0 && format == nativeVisualId) {
118 *outConfig = configs[i];
119 delete [] configs;
120 return NO_ERROR;
121 }
122 }
123 delete [] configs;
124 return NAME_NOT_FOUND;
125}
126
127
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800128void DisplayHardware::init(uint32_t dpy)
129{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700130 mNativeWindow = new FramebufferNativeWindow();
Mathias Agopian0928e312009-08-07 16:38:10 -0700131 framebuffer_device_t const * fbDev = mNativeWindow->getDevice();
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700132 if (!fbDev) {
133 LOGE("Display subsystem failed to initialize. check logs. exiting...");
134 exit(0);
135 }
136
Mathias Agopian61630912011-07-06 16:35:30 -0700137 int format;
138 ANativeWindow const * const window = mNativeWindow.get();
139 window->query(window, NATIVE_WINDOW_FORMAT, &format);
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700140 mDpiX = mNativeWindow->xdpi;
141 mDpiY = mNativeWindow->ydpi;
142 mRefreshRate = fbDev->fps;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700143
Mathias Agopian385977f2011-11-04 18:46:11 -0700144
145/* FIXME: this is a temporary HACK until we are able to report the refresh rate
146 * properly from the HAL. The WindowManagerService now relies on this value.
147 */
148#ifndef REFRESH_RATE
149 mRefreshRate = fbDev->fps;
150#else
151 mRefreshRate = REFRESH_RATE;
152#warning "refresh rate set via makefile to REFRESH_RATE"
153#endif
154
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700155 EGLint w, h, dummy;
156 EGLint numConfigs=0;
157 EGLSurface surface;
158 EGLContext context;
Mathias Agopian61630912011-07-06 16:35:30 -0700159 EGLBoolean result;
160 status_t err;
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700161
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800162 // initialize EGL
Mathias Agopiana5b02e02009-09-04 18:49:03 -0700163 EGLint attribs[] = {
Mathias Agopian61630912011-07-06 16:35:30 -0700164 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
165 EGL_NONE, 0,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166 EGL_NONE
167 };
Mathias Agopiana5b02e02009-09-04 18:49:03 -0700168
169 // debug: disable h/w rendering
170 char property[PROPERTY_VALUE_MAX];
171 if (property_get("debug.sf.hw", property, NULL) > 0) {
172 if (atoi(property) == 0) {
173 LOGW("H/W composition disabled");
174 attribs[2] = EGL_CONFIG_CAVEAT;
175 attribs[3] = EGL_SLOW_CONFIG;
176 }
177 }
178
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800179 // TODO: all the extensions below should be queried through
180 // eglGetProcAddress().
181
182 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
183 eglInitialize(display, NULL, NULL);
184 eglGetConfigs(display, NULL, 0, &numConfigs);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700185
Mathias Agopian61630912011-07-06 16:35:30 -0700186 EGLConfig config = NULL;
187 err = selectConfigForPixelFormat(display, attribs, format, &config);
Mathias Agopian6cf50a72009-08-06 16:05:39 -0700188 LOGE_IF(err, "couldn't find an EGLConfig matching the screen format");
189
Mathias Agopian0928e312009-08-07 16:38:10 -0700190 EGLint r,g,b,a;
191 eglGetConfigAttrib(display, config, EGL_RED_SIZE, &r);
192 eglGetConfigAttrib(display, config, EGL_GREEN_SIZE, &g);
193 eglGetConfigAttrib(display, config, EGL_BLUE_SIZE, &b);
194 eglGetConfigAttrib(display, config, EGL_ALPHA_SIZE, &a);
195
Mathias Agopian1e16b132009-05-07 17:40:23 -0700196 if (mNativeWindow->isUpdateOnDemand()) {
Mathias Agopian95a666b2009-09-24 14:57:26 -0700197 mFlags |= PARTIAL_UPDATES;
Mathias Agopian1e16b132009-05-07 17:40:23 -0700198 }
199
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800200 if (eglGetConfigAttrib(display, config, EGL_CONFIG_CAVEAT, &dummy) == EGL_TRUE) {
201 if (dummy == EGL_SLOW_CONFIG)
202 mFlags |= SLOW_CONFIG;
203 }
204
205 /*
206 * Create our main surface
207 */
208
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700209 surface = eglCreateWindowSurface(display, config, mNativeWindow.get(), NULL);
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700210 eglQuerySurface(display, surface, EGL_WIDTH, &mWidth);
211 eglQuerySurface(display, surface, EGL_HEIGHT, &mHeight);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800212
Mathias Agopian95a666b2009-09-24 14:57:26 -0700213 if (mFlags & PARTIAL_UPDATES) {
214 // if we have partial updates, we definitely don't need to
215 // preserve the backbuffer, which may be costly.
Mathias Agopian0928bee2009-09-16 20:15:42 -0700216 eglSurfaceAttrib(display, surface,
217 EGL_SWAP_BEHAVIOR, EGL_BUFFER_DESTROYED);
218 }
219
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800220 if (eglQuerySurface(display, surface, EGL_SWAP_BEHAVIOR, &dummy) == EGL_TRUE) {
221 if (dummy == EGL_BUFFER_PRESERVED) {
222 mFlags |= BUFFER_PRESERVED;
223 }
224 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800225
David 'Digit' Turnerae71acc2009-06-19 04:41:12 +0200226 /* Read density from build-specific ro.sf.lcd_density property
Mathias Agopian24e5f522009-08-12 21:18:15 -0700227 * except if it is overridden by qemu.sf.lcd_density.
David 'Digit' Turnerae71acc2009-06-19 04:41:12 +0200228 */
229 if (property_get("qemu.sf.lcd_density", property, NULL) <= 0) {
230 if (property_get("ro.sf.lcd_density", property, NULL) <= 0) {
231 LOGW("ro.sf.lcd_density not defined, using 160 dpi by default.");
232 strcpy(property, "160");
David 'Digit' Turner694e10b2009-06-18 04:30:32 +0200233 }
David 'Digit' Turner31469e12009-07-29 00:38:58 +0200234 } else {
235 /* for the emulator case, reset the dpi values too */
236 mDpiX = mDpiY = atoi(property);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800237 }
238 mDensity = atoi(property) * (1.0f/160.0f);
239
240
241 /*
242 * Create our OpenGL ES context
243 */
244
Mathias Agopian67226812010-10-11 17:54:43 -0700245
246 EGLint contextAttributes[] = {
247#ifdef EGL_IMG_context_priority
248#ifdef HAS_CONTEXT_PRIORITY
249#warning "using EGL_IMG_context_priority"
250 EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG,
251#endif
252#endif
253 EGL_NONE, EGL_NONE
254 };
255 context = eglCreateContext(display, config, NULL, contextAttributes);
256
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800257 mDisplay = display;
258 mConfig = config;
259 mSurface = surface;
260 mContext = context;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700261 mFormat = fbDev->format;
262 mPageFlipCount = 0;
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700263
264 /*
265 * Gather OpenGL ES extensions
266 */
267
Mathias Agopian61630912011-07-06 16:35:30 -0700268 result = eglMakeCurrent(display, surface, surface, context);
269 if (!result) {
270 LOGE("Couldn't create a working GLES context. check logs. exiting...");
271 exit(0);
272 }
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700273
274 GLExtensions& extensions(GLExtensions::getInstance());
275 extensions.initWithGLStrings(
276 glGetString(GL_VENDOR),
277 glGetString(GL_RENDERER),
278 glGetString(GL_VERSION),
279 glGetString(GL_EXTENSIONS),
280 eglQueryString(display, EGL_VENDOR),
281 eglQueryString(display, EGL_VERSION),
282 eglQueryString(display, EGL_EXTENSIONS));
283
284 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
Mathias Agopian3d64e732011-04-18 15:59:24 -0700285 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, mMaxViewportDims);
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700286
287
288#ifdef EGL_ANDROID_swap_rectangle
289 if (extensions.hasExtension("EGL_ANDROID_swap_rectangle")) {
290 if (eglSetSwapRectangleANDROID(display, surface,
291 0, 0, mWidth, mHeight) == EGL_TRUE) {
292 // This could fail if this extension is not supported by this
293 // specific surface (of config)
294 mFlags |= SWAP_RECTANGLE;
295 }
296 }
297 // when we have the choice between PARTIAL_UPDATES and SWAP_RECTANGLE
298 // choose PARTIAL_UPDATES, which should be more efficient
299 if (mFlags & PARTIAL_UPDATES)
300 mFlags &= ~SWAP_RECTANGLE;
301#endif
302
303 LOGI("EGL informations:");
304 LOGI("# of configs : %d", numConfigs);
305 LOGI("vendor : %s", extensions.getEglVendor());
306 LOGI("version : %s", extensions.getEglVersion());
307 LOGI("extensions: %s", extensions.getEglExtension());
308 LOGI("Client API: %s", eglQueryString(display, EGL_CLIENT_APIS)?:"Not Supported");
309 LOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, config);
310
311 LOGI("OpenGL informations:");
312 LOGI("vendor : %s", extensions.getVendor());
313 LOGI("renderer : %s", extensions.getRenderer());
314 LOGI("version : %s", extensions.getVersion());
315 LOGI("extensions: %s", extensions.getExtension());
316 LOGI("GL_MAX_TEXTURE_SIZE = %d", mMaxTextureSize);
Mathias Agopian3d64e732011-04-18 15:59:24 -0700317 LOGI("GL_MAX_VIEWPORT_DIMS = %d x %d", mMaxViewportDims[0], mMaxViewportDims[1]);
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700318 LOGI("flags = %08x", mFlags);
319
320 // Unbind the context from this thread
321 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700322
323
324 // initialize the H/W composer
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700325 mHwc = new HWComposer(mFlinger);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700326 if (mHwc->initCheck() == NO_ERROR) {
327 mHwc->setFrameBuffer(mDisplay, mSurface);
328 }
329}
330
331HWComposer& DisplayHardware::getHwComposer() const {
332 return *mHwc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800333}
334
335/*
336 * Clean up. Throw out our local state.
337 *
338 * (It's entirely possible we'll never get here, since this is meant
339 * for real hardware, which doesn't restart.)
340 */
341
342void DisplayHardware::fini()
343{
344 eglMakeCurrent(mDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
345 eglTerminate(mDisplay);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800346}
347
348void DisplayHardware::releaseScreen() const
349{
350 DisplayHardwareBase::releaseScreen();
Antti Hatalaf5f27122010-09-09 02:33:05 -0700351 if (mHwc->initCheck() == NO_ERROR) {
352 mHwc->release();
353 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800354}
355
356void DisplayHardware::acquireScreen() const
357{
358 DisplayHardwareBase::acquireScreen();
359}
360
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800361uint32_t DisplayHardware::getPageFlipCount() const {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700362 return mPageFlipCount;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800363}
364
Mathias Agopian74faca22009-09-17 16:18:16 -0700365status_t DisplayHardware::compositionComplete() const {
366 return mNativeWindow->compositionComplete();
367}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800368
Mathias Agopian35b48d12010-09-13 22:57:58 -0700369int DisplayHardware::getCurrentBufferIndex() const {
370 return mNativeWindow->getCurrentBufferIndex();
371}
372
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800373void DisplayHardware::flip(const Region& dirty) const
374{
375 checkGLErrors();
376
377 EGLDisplay dpy = mDisplay;
378 EGLSurface surface = mSurface;
379
Mathias Agopian5e78e092009-06-11 17:19:54 -0700380#ifdef EGL_ANDROID_swap_rectangle
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700381 if (mFlags & SWAP_RECTANGLE) {
Mathias Agopianb8a55602009-06-26 19:06:36 -0700382 const Region newDirty(dirty.intersect(bounds()));
383 const Rect b(newDirty.getBounds());
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700384 eglSetSwapRectangleANDROID(dpy, surface,
385 b.left, b.top, b.width(), b.height());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800386 }
Mathias Agopian5e78e092009-06-11 17:19:54 -0700387#endif
388
Mathias Agopian95a666b2009-09-24 14:57:26 -0700389 if (mFlags & PARTIAL_UPDATES) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700390 mNativeWindow->setUpdateRectangle(dirty.getBounds());
Mathias Agopian1e16b132009-05-07 17:40:23 -0700391 }
392
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700393 mPageFlipCount++;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700394
395 if (mHwc->initCheck() == NO_ERROR) {
396 mHwc->commit();
397 } else {
398 eglSwapBuffers(dpy, surface);
399 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800400 checkEGLErrors("eglSwapBuffers");
401
402 // for debugging
403 //glClearColor(1,0,0,0);
404 //glClear(GL_COLOR_BUFFER_BIT);
405}
406
407uint32_t DisplayHardware::getFlags() const
408{
409 return mFlags;
410}
411
412void DisplayHardware::makeCurrent() const
413{
414 eglMakeCurrent(mDisplay, mSurface, mSurface, mContext);
415}
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800416
417void DisplayHardware::dump(String8& res) const
418{
419 mNativeWindow->dump(res);
420}