blob: 447de76508cd461e36cb4c9c11f9ce00d9878b1f [file] [log] [blame]
Jamie Gennis8ba32fa2010-12-20 11:27:26 -08001/*
2 * Copyright (C) 2010 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
17#define LOG_TAG "SurfaceTexture"
Jamie Gennise70d8b42011-01-09 13:24:09 -080018//#define LOG_NDEBUG 0
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080019
20#define GL_GLEXT_PROTOTYPES
21#define EGL_EGLEXT_PROTOTYPES
22
23#include <EGL/egl.h>
24#include <EGL/eglext.h>
25#include <GLES2/gl2.h>
26#include <GLES2/gl2ext.h>
27
28#include <gui/SurfaceTexture.h>
29
30#include <surfaceflinger/ISurfaceComposer.h>
31#include <surfaceflinger/SurfaceComposerClient.h>
Jamie Gennis9a78c902011-01-12 18:30:40 -080032#include <surfaceflinger/IGraphicBufferAlloc.h>
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080033
34#include <utils/Log.h>
35
36namespace android {
37
Jamie Gennisf238e282011-01-09 16:33:17 -080038// Transform matrices
39static float mtxIdentity[16] = {
40 1, 0, 0, 0,
41 0, 1, 0, 0,
42 0, 0, 1, 0,
43 0, 0, 0, 1,
44};
45static float mtxFlipH[16] = {
46 -1, 0, 0, 0,
47 0, 1, 0, 0,
48 0, 0, 1, 0,
49 1, 0, 0, 1,
50};
51static float mtxFlipV[16] = {
52 1, 0, 0, 0,
53 0, -1, 0, 0,
54 0, 0, 1, 0,
55 0, 1, 0, 1,
56};
57static float mtxRot90[16] = {
58 0, 1, 0, 0,
59 -1, 0, 0, 0,
60 0, 0, 1, 0,
61 1, 0, 0, 1,
62};
63static float mtxRot180[16] = {
64 -1, 0, 0, 0,
65 0, -1, 0, 0,
66 0, 0, 1, 0,
67 1, 1, 0, 1,
68};
69static float mtxRot270[16] = {
70 0, -1, 0, 0,
71 1, 0, 0, 0,
72 0, 0, 1, 0,
73 0, 1, 0, 1,
74};
75
76static void mtxMul(float out[16], const float a[16], const float b[16]);
77
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080078SurfaceTexture::SurfaceTexture(GLuint tex) :
79 mBufferCount(MIN_BUFFER_SLOTS), mCurrentTexture(INVALID_BUFFER_SLOT),
80 mLastQueued(INVALID_BUFFER_SLOT), mTexName(tex) {
Jamie Gennise70d8b42011-01-09 13:24:09 -080081 LOGV("SurfaceTexture::SurfaceTexture");
Jamie Gennis3461e0f2011-01-07 16:05:47 -080082 for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
83 mSlots[i].mEglImage = EGL_NO_IMAGE_KHR;
84 mSlots[i].mEglDisplay = EGL_NO_DISPLAY;
85 mSlots[i].mOwnedByClient = false;
86 }
Jamie Gennis9a78c902011-01-12 18:30:40 -080087 sp<ISurfaceComposer> composer(ComposerService::getComposerService());
88 mGraphicBufferAlloc = composer->createGraphicBufferAlloc();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080089}
90
91SurfaceTexture::~SurfaceTexture() {
Jamie Gennise70d8b42011-01-09 13:24:09 -080092 LOGV("SurfaceTexture::~SurfaceTexture");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080093 freeAllBuffers();
94}
95
96status_t SurfaceTexture::setBufferCount(int bufferCount) {
Jamie Gennise70d8b42011-01-09 13:24:09 -080097 LOGV("SurfaceTexture::setBufferCount");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080098 Mutex::Autolock lock(mMutex);
99 freeAllBuffers();
100 mBufferCount = bufferCount;
Jamie Gennis67eedd72011-01-09 13:25:39 -0800101 mCurrentTexture = INVALID_BUFFER_SLOT;
102 mLastQueued = INVALID_BUFFER_SLOT;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800103 return OK;
104}
105
106sp<GraphicBuffer> SurfaceTexture::requestBuffer(int buf,
107 uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800108 LOGV("SurfaceTexture::requestBuffer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800109 Mutex::Autolock lock(mMutex);
110 if (buf < 0 || mBufferCount <= buf) {
111 LOGE("requestBuffer: slot index out of range [0, %d]: %d",
112 mBufferCount, buf);
113 return 0;
114 }
115 usage |= GraphicBuffer::USAGE_HW_TEXTURE;
Jamie Gennis9a78c902011-01-12 18:30:40 -0800116 sp<GraphicBuffer> graphicBuffer(
117 mGraphicBufferAlloc->createGraphicBuffer(w, h, format, usage));
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800118 if (graphicBuffer == 0) {
119 LOGE("requestBuffer: SurfaceComposer::createGraphicBuffer failed");
120 } else {
121 mSlots[buf].mGraphicBuffer = graphicBuffer;
122 if (mSlots[buf].mEglImage != EGL_NO_IMAGE_KHR) {
123 eglDestroyImageKHR(mSlots[buf].mEglDisplay, mSlots[buf].mEglImage);
124 mSlots[buf].mEglImage = EGL_NO_IMAGE_KHR;
125 mSlots[buf].mEglDisplay = EGL_NO_DISPLAY;
126 }
Jamie Gennis9a78c902011-01-12 18:30:40 -0800127 mAllocdBuffers.add(graphicBuffer);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800128 }
129 return graphicBuffer;
130}
131
132status_t SurfaceTexture::dequeueBuffer(int *buf) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800133 LOGV("SurfaceTexture::dequeueBuffer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800134 Mutex::Autolock lock(mMutex);
135 int found = INVALID_BUFFER_SLOT;
136 for (int i = 0; i < mBufferCount; i++) {
Jamie Gennis235c4242011-01-11 15:00:09 -0800137 if (!mSlots[i].mOwnedByClient && i != mCurrentTexture && i != mLastQueued) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800138 mSlots[i].mOwnedByClient = true;
139 found = i;
140 break;
141 }
142 }
143 if (found == INVALID_BUFFER_SLOT) {
144 return -EBUSY;
145 }
146 *buf = found;
147 return OK;
148}
149
150status_t SurfaceTexture::queueBuffer(int buf) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800151 LOGV("SurfaceTexture::queueBuffer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800152 Mutex::Autolock lock(mMutex);
153 if (buf < 0 || mBufferCount <= buf) {
154 LOGE("queueBuffer: slot index out of range [0, %d]: %d",
155 mBufferCount, buf);
156 return -EINVAL;
157 } else if (!mSlots[buf].mOwnedByClient) {
158 LOGE("queueBuffer: slot %d is not owned by the client", buf);
159 return -EINVAL;
160 } else if (mSlots[buf].mGraphicBuffer == 0) {
161 LOGE("queueBuffer: slot %d was enqueued without requesting a buffer",
162 buf);
163 return -EINVAL;
164 }
165 mSlots[buf].mOwnedByClient = false;
166 mLastQueued = buf;
Jamie Gennisf238e282011-01-09 16:33:17 -0800167 mLastQueuedCrop = mNextCrop;
168 mLastQueuedTransform = mNextTransform;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800169 return OK;
170}
171
172void SurfaceTexture::cancelBuffer(int buf) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800173 LOGV("SurfaceTexture::cancelBuffer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800174 Mutex::Autolock lock(mMutex);
175 if (buf < 0 || mBufferCount <= buf) {
176 LOGE("cancelBuffer: slot index out of range [0, %d]: %d", mBufferCount,
177 buf);
178 return;
179 } else if (!mSlots[buf].mOwnedByClient) {
180 LOGE("cancelBuffer: slot %d is not owned by the client", buf);
181 return;
182 }
183 mSlots[buf].mOwnedByClient = false;
184}
185
Jamie Gennisf238e282011-01-09 16:33:17 -0800186status_t SurfaceTexture::setCrop(const Rect& crop) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800187 LOGV("SurfaceTexture::setCrop");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800188 Mutex::Autolock lock(mMutex);
Jamie Gennisf238e282011-01-09 16:33:17 -0800189 mNextCrop = crop;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800190 return OK;
191}
192
193status_t SurfaceTexture::setTransform(uint32_t transform) {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800194 LOGV("SurfaceTexture::setTransform");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800195 Mutex::Autolock lock(mMutex);
Jamie Gennisf238e282011-01-09 16:33:17 -0800196 mNextTransform = transform;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800197 return OK;
198}
199
200status_t SurfaceTexture::updateTexImage() {
Jamie Gennise70d8b42011-01-09 13:24:09 -0800201 LOGV("SurfaceTexture::updateTexImage");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800202 Mutex::Autolock lock(mMutex);
203
204 // We always bind the texture even if we don't update its contents.
205 glBindTexture(GL_TEXTURE_EXTERNAL_OES, mTexName);
206
207 // Initially both mCurrentTexture and mLastQueued are INVALID_BUFFER_SLOT,
208 // so this check will fail until a buffer gets queued.
209 if (mCurrentTexture != mLastQueued) {
Jamie Gennisf238e282011-01-09 16:33:17 -0800210 // Update the GL texture object.
Jamie Gennis9a78c902011-01-12 18:30:40 -0800211 EGLImageKHR image = mSlots[mLastQueued].mEglImage;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800212 if (image == EGL_NO_IMAGE_KHR) {
213 EGLDisplay dpy = eglGetCurrentDisplay();
Jamie Gennis9a78c902011-01-12 18:30:40 -0800214 sp<GraphicBuffer> graphicBuffer = mSlots[mLastQueued].mGraphicBuffer;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800215 image = createImage(dpy, graphicBuffer);
Jamie Gennis9a78c902011-01-12 18:30:40 -0800216 mSlots[mLastQueued].mEglImage = image;
217 mSlots[mLastQueued].mEglDisplay = dpy;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800218 }
219 glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, (GLeglImageOES)image);
220 GLint error = glGetError();
221 if (error != GL_NO_ERROR) {
222 LOGE("error binding external texture image %p (slot %d): %#04x",
Jamie Gennis9a78c902011-01-12 18:30:40 -0800223 image, mLastQueued, error);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800224 return -EINVAL;
225 }
Jamie Gennis9a78c902011-01-12 18:30:40 -0800226
227 // Update the SurfaceTexture state.
228 mCurrentTexture = mLastQueued;
229 mCurrentTextureBuf = mSlots[mCurrentTexture].mGraphicBuffer;
230 mCurrentCrop = mLastQueuedCrop;
231 mCurrentTransform = mLastQueuedTransform;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800232 }
233 return OK;
234}
235
Jamie Gennisf238e282011-01-09 16:33:17 -0800236void SurfaceTexture::getTransformMatrix(float mtx[16]) {
237 LOGV("SurfaceTexture::updateTexImage");
238 Mutex::Autolock lock(mMutex);
239
240 float* xform = mtxIdentity;
241 switch (mCurrentTransform) {
242 case 0:
243 xform = mtxIdentity;
244 break;
245 case NATIVE_WINDOW_TRANSFORM_FLIP_H:
246 xform = mtxFlipH;
247 break;
248 case NATIVE_WINDOW_TRANSFORM_FLIP_V:
249 xform = mtxFlipV;
250 break;
251 case NATIVE_WINDOW_TRANSFORM_ROT_90:
252 xform = mtxRot90;
253 break;
254 case NATIVE_WINDOW_TRANSFORM_ROT_180:
255 xform = mtxRot180;
256 break;
257 case NATIVE_WINDOW_TRANSFORM_ROT_270:
258 xform = mtxRot270;
259 break;
260 default:
261 LOGE("getTransformMatrix: unknown transform: %d", mCurrentTransform);
262 }
263
264 sp<GraphicBuffer>& buf(mSlots[mCurrentTexture].mGraphicBuffer);
265 float tx = float(mCurrentCrop.left) / float(buf->getWidth());
266 float ty = float(mCurrentCrop.bottom) / float(buf->getHeight());
267 float sx = float(mCurrentCrop.width()) / float(buf->getWidth());
268 float sy = float(mCurrentCrop.height()) / float(buf->getHeight());
269 float crop[16] = {
270 sx, 0, 0, sx*tx,
271 0, sy, 0, sy*ty,
272 0, 0, 1, 0,
273 0, 0, 0, 1,
274 };
275
276 mtxMul(mtx, crop, xform);
277}
278
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800279void SurfaceTexture::freeAllBuffers() {
280 for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
281 mSlots[i].mGraphicBuffer = 0;
282 mSlots[i].mOwnedByClient = false;
283 if (mSlots[i].mEglImage != EGL_NO_IMAGE_KHR) {
284 eglDestroyImageKHR(mSlots[i].mEglDisplay, mSlots[i].mEglImage);
285 mSlots[i].mEglImage = EGL_NO_IMAGE_KHR;
286 mSlots[i].mEglDisplay = EGL_NO_DISPLAY;
287 }
288 }
Jamie Gennis9a78c902011-01-12 18:30:40 -0800289
290 int exceptBuf = -1;
291 for (size_t i = 0; i < mAllocdBuffers.size(); i++) {
292 if (mAllocdBuffers[i] == mCurrentTextureBuf) {
293 exceptBuf = i;
294 break;
295 }
296 }
297 mAllocdBuffers.clear();
298 if (exceptBuf >= 0) {
299 mAllocdBuffers.add(mCurrentTextureBuf);
300 }
301 mGraphicBufferAlloc->freeAllGraphicBuffersExcept(exceptBuf);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800302}
303
304EGLImageKHR SurfaceTexture::createImage(EGLDisplay dpy,
305 const sp<GraphicBuffer>& graphicBuffer) {
306 EGLClientBuffer cbuf = (EGLClientBuffer)graphicBuffer->getNativeBuffer();
307 EGLint attrs[] = {
308 EGL_IMAGE_PRESERVED_KHR, EGL_TRUE,
309 EGL_NONE,
310 };
311 EGLImageKHR image = eglCreateImageKHR(dpy, EGL_NO_CONTEXT,
312 EGL_NATIVE_BUFFER_ANDROID, cbuf, attrs);
313 EGLint error = eglGetError();
314 if (error != EGL_SUCCESS) {
315 LOGE("error creating EGLImage: %#x", error);
316 } else if (image == EGL_NO_IMAGE_KHR) {
317 LOGE("no error reported, but no image was returned by "
318 "eglCreateImageKHR");
319 }
320 return image;
321}
322
Jamie Gennisf238e282011-01-09 16:33:17 -0800323static void mtxMul(float out[16], const float a[16], const float b[16]) {
324 out[0] = a[0]*b[0] + a[4]*b[1] + a[8]*b[2] + a[12]*b[3];
325 out[1] = a[1]*b[0] + a[5]*b[1] + a[9]*b[2] + a[13]*b[3];
326 out[2] = a[2]*b[0] + a[6]*b[1] + a[10]*b[2] + a[14]*b[3];
327 out[3] = a[3]*b[0] + a[7]*b[1] + a[11]*b[2] + a[15]*b[3];
328
329 out[4] = a[0]*b[4] + a[4]*b[5] + a[8]*b[6] + a[12]*b[7];
330 out[5] = a[1]*b[4] + a[5]*b[5] + a[9]*b[6] + a[13]*b[7];
331 out[6] = a[2]*b[4] + a[6]*b[5] + a[10]*b[6] + a[14]*b[7];
332 out[7] = a[3]*b[4] + a[7]*b[5] + a[11]*b[6] + a[15]*b[7];
333
334 out[8] = a[0]*b[8] + a[4]*b[9] + a[8]*b[10] + a[12]*b[11];
335 out[9] = a[1]*b[8] + a[5]*b[9] + a[9]*b[10] + a[13]*b[11];
336 out[10] = a[2]*b[8] + a[6]*b[9] + a[10]*b[10] + a[14]*b[11];
337 out[11] = a[3]*b[8] + a[7]*b[9] + a[11]*b[10] + a[15]*b[11];
338
339 out[12] = a[0]*b[12] + a[4]*b[13] + a[8]*b[14] + a[12]*b[15];
340 out[13] = a[1]*b[12] + a[5]*b[13] + a[9]*b[14] + a[13]*b[15];
341 out[14] = a[2]*b[12] + a[6]*b[13] + a[10]*b[14] + a[14]*b[15];
342 out[15] = a[3]*b[12] + a[7]*b[13] + a[11]*b[14] + a[15]*b[15];
343}
344
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800345}; // namespace android