blob: fd61e30d8f5a207747c62e7437d9f3f691a26cd6 [file] [log] [blame]
The Android Open Source Project9066cfe2009-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 Project9066cfe2009-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>
23
Mathias Agopian6950e422009-10-05 17:07:12 -070024#include <ui/GraphicBuffer.h>
25
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026#include "LayerDim.h"
27#include "SurfaceFlinger.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028#include "DisplayHardware/DisplayHardware.h"
29
30namespace android {
31// ---------------------------------------------------------------------------
32
33const uint32_t LayerDim::typeInfo = LayerBaseClient::typeInfo | 0x10;
34const char* const LayerDim::typeID = "LayerDim";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Mathias Agopian9cc88522009-06-18 18:48:39 -070036bool LayerDim::sUseTexture;
37GLuint LayerDim::sTexId;
38EGLImageKHR LayerDim::sImage;
39int32_t LayerDim::sWidth;
40int32_t LayerDim::sHeight;
41
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042// ---------------------------------------------------------------------------
43
44LayerDim::LayerDim(SurfaceFlinger* flinger, DisplayID display,
Mathias Agopian6edf5af2009-06-19 17:00:27 -070045 const sp<Client>& client, int32_t i)
Mathias Agopian9cc88522009-06-18 18:48:39 -070046 : LayerBaseClient(flinger, display, client, i)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047{
48}
49
50void LayerDim::initDimmer(SurfaceFlinger* flinger, uint32_t w, uint32_t h)
51{
Mathias Agopian9cc88522009-06-18 18:48:39 -070052 sTexId = -1;
53 sImage = EGL_NO_IMAGE_KHR;
54 sWidth = w;
55 sHeight = h;
56 sUseTexture = false;
57
Mathias Agopian9042b452009-10-26 20:12:37 -070058#if defined(DIM_WITH_TEXTURE) && defined(EGL_ANDROID_image_native_buffer)
59
Mathias Agopian9cc88522009-06-18 18:48:39 -070060#warning "using a texture to implement LayerDim"
61
62 /* On some h/w like msm7K, it is faster to use a texture because the
63 * software renderer will defer to copybit, for this to work we need to
64 * use an EGLImage texture so copybit can actually make use of it.
65 * This burns a full-screen worth of graphic memory.
66 */
67
68 const DisplayHardware& hw(flinger->graphicPlane(0).displayHardware());
69 uint32_t flags = hw.getFlags();
70
71 if (LIKELY(flags & DisplayHardware::DIRECT_TEXTURE)) {
Mathias Agopian6950e422009-10-05 17:07:12 -070072 sp<GraphicBuffer> buffer = new GraphicBuffer(w, h, PIXEL_FORMAT_RGB_565,
73 GraphicBuffer::USAGE_SW_WRITE_OFTEN |
74 GraphicBuffer::USAGE_HW_TEXTURE);
Mathias Agopian5cec4742009-08-11 22:34:02 -070075
Mathias Agopian9cc88522009-06-18 18:48:39 -070076 android_native_buffer_t* clientBuf = buffer->getNativeBuffer();
77
78 glGenTextures(1, &sTexId);
79 glBindTexture(GL_TEXTURE_2D, sTexId);
80
81 EGLDisplay dpy = eglGetCurrentDisplay();
82 sImage = eglCreateImageKHR(dpy, EGL_NO_CONTEXT,
83 EGL_NATIVE_BUFFER_ANDROID, (EGLClientBuffer)clientBuf, 0);
84 if (sImage == EGL_NO_IMAGE_KHR) {
85 LOGE("eglCreateImageKHR() failed. err=0x%4x", eglGetError());
86 return;
87 }
88
89 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, (GLeglImageOES)sImage);
90 GLint error = glGetError();
91 if (error != GL_NO_ERROR) {
92 eglDestroyImageKHR(dpy, sImage);
93 LOGE("glEGLImageTargetTexture2DOES() failed. err=0x%4x", error);
94 return;
95 }
96
97 // initialize the texture with zeros
98 GGLSurface t;
Mathias Agopian2ec84582009-08-11 22:34:02 -070099 buffer->lock(&t, GRALLOC_USAGE_SW_WRITE_OFTEN);
Mathias Agopiandafb08d2009-06-25 16:21:32 -0700100 memset(t.data, 0, t.stride * t.height * 2);
Mathias Agopian9cc88522009-06-18 18:48:39 -0700101 buffer->unlock();
102 sUseTexture = true;
103 }
104#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105}
106
107LayerDim::~LayerDim()
108{
109}
110
111void LayerDim::onDraw(const Region& clip) const
112{
113 const State& s(drawingState());
Mathias Agopian6158b1b2009-05-11 00:03:41 -0700114 Region::const_iterator it = clip.begin();
115 Region::const_iterator const end = clip.end();
116 if (s.alpha>0 && (it != end)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian1473f462009-04-10 14:24:30 -0700118 const GGLfixed alpha = (s.alpha << 16)/255;
119 const uint32_t fbHeight = hw.getHeight();
Mathias Agopian1473f462009-04-10 14:24:30 -0700120 glDisable(GL_DITHER);
121 glEnable(GL_BLEND);
122 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
123 glColor4x(0, 0, 0, alpha);
Mathias Agopian9cc88522009-06-18 18:48:39 -0700124
Mathias Agopian9042b452009-10-26 20:12:37 -0700125#if defined(DIM_WITH_TEXTURE) && defined(EGL_ANDROID_image_native_buffer)
Mathias Agopian9cc88522009-06-18 18:48:39 -0700126 if (sUseTexture) {
127 glBindTexture(GL_TEXTURE_2D, sTexId);
128 glEnable(GL_TEXTURE_2D);
129 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
130 const GLshort texCoords[4][2] = {
131 { 0, 0 },
132 { 0, 1 },
133 { 1, 1 },
134 { 1, 0 }
135 };
136 glMatrixMode(GL_TEXTURE);
137 glLoadIdentity();
138 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
139 glTexCoordPointer(2, GL_SHORT, 0, texCoords);
140 } else
141#endif
142 {
143 glDisable(GL_TEXTURE_2D);
144 }
145
146 GLshort w = sWidth;
147 GLshort h = sHeight;
148 const GLshort vertices[4][2] = {
149 { 0, 0 },
150 { 0, h },
151 { w, h },
152 { w, 0 }
153 };
154 glVertexPointer(2, GL_SHORT, 0, vertices);
155
Mathias Agopian6158b1b2009-05-11 00:03:41 -0700156 while (it != end) {
157 const Rect& r = *it++;
Mathias Agopian1473f462009-04-10 14:24:30 -0700158 const GLint sy = fbHeight - (r.top + r.height());
159 glScissor(r.left, sy, r.width(), r.height());
160 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 }
162 }
Mathias Agopian9cc88522009-06-18 18:48:39 -0700163 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164}
165
166// ---------------------------------------------------------------------------
167
168}; // namespace android