The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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 | |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame^] | 24 | #include "Buffer.h" |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 25 | #include "BufferAllocator.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | #include "LayerDim.h" |
| 27 | #include "SurfaceFlinger.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | #include "DisplayHardware/DisplayHardware.h" |
| 29 | |
| 30 | namespace android { |
| 31 | // --------------------------------------------------------------------------- |
| 32 | |
| 33 | const uint32_t LayerDim::typeInfo = LayerBaseClient::typeInfo | 0x10; |
| 34 | const char* const LayerDim::typeID = "LayerDim"; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 36 | bool LayerDim::sUseTexture; |
| 37 | GLuint LayerDim::sTexId; |
| 38 | EGLImageKHR LayerDim::sImage; |
| 39 | int32_t LayerDim::sWidth; |
| 40 | int32_t LayerDim::sHeight; |
| 41 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | // --------------------------------------------------------------------------- |
| 43 | |
| 44 | LayerDim::LayerDim(SurfaceFlinger* flinger, DisplayID display, |
Mathias Agopian | f9d9327 | 2009-06-19 17:00:27 -0700 | [diff] [blame] | 45 | const sp<Client>& client, int32_t i) |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 46 | : LayerBaseClient(flinger, display, client, i) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | { |
| 48 | } |
| 49 | |
| 50 | void LayerDim::initDimmer(SurfaceFlinger* flinger, uint32_t w, uint32_t h) |
| 51 | { |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 52 | sTexId = -1; |
| 53 | sImage = EGL_NO_IMAGE_KHR; |
| 54 | sWidth = w; |
| 55 | sHeight = h; |
| 56 | sUseTexture = false; |
| 57 | |
| 58 | #ifdef DIM_WITH_TEXTURE |
| 59 | |
| 60 | #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)) { |
| 72 | // TODO: api to pass the usage flags |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 73 | sp<Buffer> buffer = new Buffer(w, h, PIXEL_FORMAT_RGB_565, |
| 74 | BufferAllocator::USAGE_SW_WRITE_OFTEN | |
Mathias Agopian | cf70e33 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 75 | BufferAllocator::USAGE_HW_TEXTURE); |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 76 | |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 77 | android_native_buffer_t* clientBuf = buffer->getNativeBuffer(); |
| 78 | |
| 79 | glGenTextures(1, &sTexId); |
| 80 | glBindTexture(GL_TEXTURE_2D, sTexId); |
| 81 | |
| 82 | EGLDisplay dpy = eglGetCurrentDisplay(); |
| 83 | sImage = eglCreateImageKHR(dpy, EGL_NO_CONTEXT, |
| 84 | EGL_NATIVE_BUFFER_ANDROID, (EGLClientBuffer)clientBuf, 0); |
| 85 | if (sImage == EGL_NO_IMAGE_KHR) { |
| 86 | LOGE("eglCreateImageKHR() failed. err=0x%4x", eglGetError()); |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, (GLeglImageOES)sImage); |
| 91 | GLint error = glGetError(); |
| 92 | if (error != GL_NO_ERROR) { |
| 93 | eglDestroyImageKHR(dpy, sImage); |
| 94 | LOGE("glEGLImageTargetTexture2DOES() failed. err=0x%4x", error); |
| 95 | return; |
| 96 | } |
| 97 | |
| 98 | // initialize the texture with zeros |
| 99 | GGLSurface t; |
Mathias Agopian | cf70e33 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 100 | buffer->lock(&t, GRALLOC_USAGE_SW_WRITE_OFTEN); |
Mathias Agopian | 958b3ca | 2009-06-25 16:21:32 -0700 | [diff] [blame] | 101 | memset(t.data, 0, t.stride * t.height * 2); |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 102 | buffer->unlock(); |
| 103 | sUseTexture = true; |
| 104 | } |
| 105 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | LayerDim::~LayerDim() |
| 109 | { |
| 110 | } |
| 111 | |
| 112 | void LayerDim::onDraw(const Region& clip) const |
| 113 | { |
| 114 | const State& s(drawingState()); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 115 | Region::const_iterator it = clip.begin(); |
| 116 | Region::const_iterator const end = clip.end(); |
| 117 | if (s.alpha>0 && (it != end)) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 118 | const DisplayHardware& hw(graphicPlane(0).displayHardware()); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 119 | const GGLfixed alpha = (s.alpha << 16)/255; |
| 120 | const uint32_t fbHeight = hw.getHeight(); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 121 | glDisable(GL_DITHER); |
| 122 | glEnable(GL_BLEND); |
| 123 | glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA); |
| 124 | glColor4x(0, 0, 0, alpha); |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 125 | |
| 126 | #ifdef DIM_WITH_TEXTURE |
| 127 | if (sUseTexture) { |
| 128 | glBindTexture(GL_TEXTURE_2D, sTexId); |
| 129 | glEnable(GL_TEXTURE_2D); |
| 130 | glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE); |
| 131 | const GLshort texCoords[4][2] = { |
| 132 | { 0, 0 }, |
| 133 | { 0, 1 }, |
| 134 | { 1, 1 }, |
| 135 | { 1, 0 } |
| 136 | }; |
| 137 | glMatrixMode(GL_TEXTURE); |
| 138 | glLoadIdentity(); |
| 139 | glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
| 140 | glTexCoordPointer(2, GL_SHORT, 0, texCoords); |
| 141 | } else |
| 142 | #endif |
| 143 | { |
| 144 | glDisable(GL_TEXTURE_2D); |
| 145 | } |
| 146 | |
| 147 | GLshort w = sWidth; |
| 148 | GLshort h = sHeight; |
| 149 | const GLshort vertices[4][2] = { |
| 150 | { 0, 0 }, |
| 151 | { 0, h }, |
| 152 | { w, h }, |
| 153 | { w, 0 } |
| 154 | }; |
| 155 | glVertexPointer(2, GL_SHORT, 0, vertices); |
| 156 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 157 | while (it != end) { |
| 158 | const Rect& r = *it++; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 159 | const GLint sy = fbHeight - (r.top + r.height()); |
| 160 | glScissor(r.left, sy, r.width(), r.height()); |
| 161 | glDrawArrays(GL_TRIANGLE_FAN, 0, 4); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | } |
| 163 | } |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 164 | glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | // --------------------------------------------------------------------------- |
| 168 | |
| 169 | }; // namespace android |