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 | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 24 | #include "BufferAllocator.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | #include "LayerDim.h" |
| 26 | #include "SurfaceFlinger.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | #include "DisplayHardware/DisplayHardware.h" |
| 28 | |
| 29 | namespace android { |
| 30 | // --------------------------------------------------------------------------- |
| 31 | |
| 32 | const uint32_t LayerDim::typeInfo = LayerBaseClient::typeInfo | 0x10; |
| 33 | const char* const LayerDim::typeID = "LayerDim"; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 35 | bool LayerDim::sUseTexture; |
| 36 | GLuint LayerDim::sTexId; |
| 37 | EGLImageKHR LayerDim::sImage; |
| 38 | int32_t LayerDim::sWidth; |
| 39 | int32_t LayerDim::sHeight; |
| 40 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 41 | // --------------------------------------------------------------------------- |
| 42 | |
| 43 | LayerDim::LayerDim(SurfaceFlinger* flinger, DisplayID display, |
Mathias Agopian | f9d9327 | 2009-06-19 17:00:27 -0700 | [diff] [blame] | 44 | const sp<Client>& client, int32_t i) |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 45 | : LayerBaseClient(flinger, display, client, i) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | { |
| 47 | } |
| 48 | |
| 49 | void LayerDim::initDimmer(SurfaceFlinger* flinger, uint32_t w, uint32_t h) |
| 50 | { |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 51 | sTexId = -1; |
| 52 | sImage = EGL_NO_IMAGE_KHR; |
| 53 | sWidth = w; |
| 54 | sHeight = h; |
| 55 | sUseTexture = false; |
| 56 | |
| 57 | #ifdef DIM_WITH_TEXTURE |
| 58 | |
| 59 | #warning "using a texture to implement LayerDim" |
| 60 | |
| 61 | /* On some h/w like msm7K, it is faster to use a texture because the |
| 62 | * software renderer will defer to copybit, for this to work we need to |
| 63 | * use an EGLImage texture so copybit can actually make use of it. |
| 64 | * This burns a full-screen worth of graphic memory. |
| 65 | */ |
| 66 | |
| 67 | const DisplayHardware& hw(flinger->graphicPlane(0).displayHardware()); |
| 68 | uint32_t flags = hw.getFlags(); |
| 69 | |
| 70 | if (LIKELY(flags & DisplayHardware::DIRECT_TEXTURE)) { |
| 71 | // TODO: api to pass the usage flags |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 72 | sp<Buffer> buffer = new Buffer(w, h, PIXEL_FORMAT_RGB_565, |
| 73 | BufferAllocator::USAGE_SW_WRITE_OFTEN | |
Mathias Agopian | cf70e33 | 2009-08-11 22:34:02 -0700 | [diff] [blame^] | 74 | BufferAllocator::USAGE_HW_TEXTURE); |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 75 | |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 76 | 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 Agopian | cf70e33 | 2009-08-11 22:34:02 -0700 | [diff] [blame^] | 99 | buffer->lock(&t, GRALLOC_USAGE_SW_WRITE_OFTEN); |
Mathias Agopian | 958b3ca | 2009-06-25 16:21:32 -0700 | [diff] [blame] | 100 | memset(t.data, 0, t.stride * t.height * 2); |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 101 | buffer->unlock(); |
| 102 | sUseTexture = true; |
| 103 | } |
| 104 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | LayerDim::~LayerDim() |
| 108 | { |
| 109 | } |
| 110 | |
| 111 | void LayerDim::onDraw(const Region& clip) const |
| 112 | { |
| 113 | const State& s(drawingState()); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 114 | 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 Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 117 | const DisplayHardware& hw(graphicPlane(0).displayHardware()); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 118 | const GGLfixed alpha = (s.alpha << 16)/255; |
| 119 | const uint32_t fbHeight = hw.getHeight(); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 120 | glDisable(GL_DITHER); |
| 121 | glEnable(GL_BLEND); |
| 122 | glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA); |
| 123 | glColor4x(0, 0, 0, alpha); |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 124 | |
| 125 | #ifdef DIM_WITH_TEXTURE |
| 126 | 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 Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 156 | while (it != end) { |
| 157 | const Rect& r = *it++; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 158 | 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 Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 161 | } |
| 162 | } |
Mathias Agopian | 945ebbf | 2009-06-18 18:48:39 -0700 | [diff] [blame] | 163 | glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | // --------------------------------------------------------------------------- |
| 167 | |
| 168 | }; // namespace android |