blob: ef3a707ae521c2df7bf1f32f70c765444635722f [file] [log] [blame]
Jason Samseb4fe182011-05-26 16:33:01 -07001/*
Jason Sams3522f402012-03-23 11:47:26 -07002 * Copyright (C) 2011-2012 The Android Open Source Project
Jason Samseb4fe182011-05-26 16:33:01 -07003 *
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
18#include "rsdCore.h"
Jason Samseb4fe182011-05-26 16:33:01 -070019#include "rsdAllocation.h"
Alex Sakhartchouka9495242011-06-16 11:05:13 -070020#include "rsdFrameBufferObj.h"
Jason Samseb4fe182011-05-26 16:33:01 -070021
22#include "rsAllocation.h"
23
Jason Sams7ac2a4d2012-02-15 12:04:24 -080024#include "system/window.h"
25#include "hardware/gralloc.h"
26#include "ui/Rect.h"
27#include "ui/GraphicBufferMapper.h"
Jason Sams3522f402012-03-23 11:47:26 -070028#include "gui/SurfaceTexture.h"
Jason Sams7ac2a4d2012-02-15 12:04:24 -080029
Jason Samseb4fe182011-05-26 16:33:01 -070030#include <GLES/gl.h>
31#include <GLES2/gl2.h>
32#include <GLES/glext.h>
33
34using namespace android;
35using namespace android::renderscript;
36
37
38
39const static GLenum gFaceOrder[] = {
40 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
41 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
42 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
43 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
44 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
45 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
46};
47
48
Jason Samsa614ae12011-05-26 17:05:51 -070049GLenum rsdTypeToGLType(RsDataType t) {
50 switch (t) {
51 case RS_TYPE_UNSIGNED_5_6_5: return GL_UNSIGNED_SHORT_5_6_5;
52 case RS_TYPE_UNSIGNED_5_5_5_1: return GL_UNSIGNED_SHORT_5_5_5_1;
53 case RS_TYPE_UNSIGNED_4_4_4_4: return GL_UNSIGNED_SHORT_4_4_4_4;
54
55 //case RS_TYPE_FLOAT_16: return GL_HALF_FLOAT;
56 case RS_TYPE_FLOAT_32: return GL_FLOAT;
57 case RS_TYPE_UNSIGNED_8: return GL_UNSIGNED_BYTE;
58 case RS_TYPE_UNSIGNED_16: return GL_UNSIGNED_SHORT;
59 case RS_TYPE_SIGNED_8: return GL_BYTE;
60 case RS_TYPE_SIGNED_16: return GL_SHORT;
61 default: break;
62 }
63 return 0;
64}
65
66GLenum rsdKindToGLFormat(RsDataKind k) {
67 switch (k) {
68 case RS_KIND_PIXEL_L: return GL_LUMINANCE;
69 case RS_KIND_PIXEL_A: return GL_ALPHA;
70 case RS_KIND_PIXEL_LA: return GL_LUMINANCE_ALPHA;
71 case RS_KIND_PIXEL_RGB: return GL_RGB;
72 case RS_KIND_PIXEL_RGBA: return GL_RGBA;
73 case RS_KIND_PIXEL_DEPTH: return GL_DEPTH_COMPONENT16;
74 default: break;
75 }
76 return 0;
77}
78
Jason Sams807fdc42012-07-25 17:55:39 -070079uint8_t *GetOffsetPtr(const android::renderscript::Allocation *alloc,
80 uint32_t xoff, uint32_t yoff, uint32_t lod,
81 RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -080082 uint8_t *ptr = (uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
83 ptr += face * alloc->mHal.drvState.faceOffset;
84 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
Jason Sams807fdc42012-07-25 17:55:39 -070085 ptr += xoff * alloc->mHal.state.elementSizeBytes;
86 return ptr;
87}
88
Jason Samsa614ae12011-05-26 17:05:51 -070089
Jason Sams2382aba2011-09-13 15:41:01 -070090static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr,
91 uint32_t xoff, uint32_t yoff, uint32_t lod,
92 RsAllocationCubemapFace face, uint32_t w, uint32_t h) {
Jason Samseb4fe182011-05-26 16:33:01 -070093 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
94
Jason Samseb4fe182011-05-26 16:33:01 -070095 rsAssert(drv->textureID);
Jason Sams2382aba2011-09-13 15:41:01 -070096 RSD_CALL_GL(glBindTexture, drv->glTarget, drv->textureID);
97 RSD_CALL_GL(glPixelStorei, GL_UNPACK_ALIGNMENT, 1);
Jason Samseb4fe182011-05-26 16:33:01 -070098 GLenum t = GL_TEXTURE_2D;
99 if (alloc->mHal.state.hasFaces) {
100 t = gFaceOrder[face];
101 }
Jason Sams2382aba2011-09-13 15:41:01 -0700102 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
Jason Samseb4fe182011-05-26 16:33:01 -0700103}
104
105
106static void Upload2DTexture(const Context *rsc, const Allocation *alloc, bool isFirstUpload) {
107 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
108
Jason Sams2382aba2011-09-13 15:41:01 -0700109 RSD_CALL_GL(glBindTexture, drv->glTarget, drv->textureID);
110 RSD_CALL_GL(glPixelStorei, GL_UNPACK_ALIGNMENT, 1);
Jason Samseb4fe182011-05-26 16:33:01 -0700111
112 uint32_t faceCount = 1;
113 if (alloc->mHal.state.hasFaces) {
114 faceCount = 6;
115 }
116
117 rsdGLCheckError(rsc, "Upload2DTexture 1 ");
118 for (uint32_t face = 0; face < faceCount; face ++) {
119 for (uint32_t lod = 0; lod < alloc->mHal.state.type->getLODCount(); lod++) {
Jason Sams807fdc42012-07-25 17:55:39 -0700120 const uint8_t *p = GetOffsetPtr(alloc, 0, 0, lod, (RsAllocationCubemapFace)face);
Jason Samseb4fe182011-05-26 16:33:01 -0700121
122 GLenum t = GL_TEXTURE_2D;
123 if (alloc->mHal.state.hasFaces) {
124 t = gFaceOrder[face];
125 }
126
127 if (isFirstUpload) {
Jason Sams2382aba2011-09-13 15:41:01 -0700128 RSD_CALL_GL(glTexImage2D, t, lod, drv->glFormat,
Jason Samseb4fe182011-05-26 16:33:01 -0700129 alloc->mHal.state.type->getLODDimX(lod),
130 alloc->mHal.state.type->getLODDimY(lod),
Jason Samsa614ae12011-05-26 17:05:51 -0700131 0, drv->glFormat, drv->glType, p);
Jason Samseb4fe182011-05-26 16:33:01 -0700132 } else {
Jason Sams2382aba2011-09-13 15:41:01 -0700133 RSD_CALL_GL(glTexSubImage2D, t, lod, 0, 0,
Jason Samseb4fe182011-05-26 16:33:01 -0700134 alloc->mHal.state.type->getLODDimX(lod),
135 alloc->mHal.state.type->getLODDimY(lod),
Jason Samsa614ae12011-05-26 17:05:51 -0700136 drv->glFormat, drv->glType, p);
Jason Samseb4fe182011-05-26 16:33:01 -0700137 }
138 }
139 }
140
141 if (alloc->mHal.state.mipmapControl == RS_ALLOCATION_MIPMAP_ON_SYNC_TO_TEXTURE) {
Jason Sams2382aba2011-09-13 15:41:01 -0700142 RSD_CALL_GL(glGenerateMipmap, drv->glTarget);
Jason Samseb4fe182011-05-26 16:33:01 -0700143 }
144 rsdGLCheckError(rsc, "Upload2DTexture");
145}
146
147static void UploadToTexture(const Context *rsc, const Allocation *alloc) {
148 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
149
Jason Sams3522f402012-03-23 11:47:26 -0700150 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) {
Jason Sams41e373d2012-01-13 14:01:20 -0800151 if (!drv->textureID) {
152 RSD_CALL_GL(glGenTextures, 1, &drv->textureID);
153 }
154 return;
155 }
156
Jason Samsa614ae12011-05-26 17:05:51 -0700157 if (!drv->glType || !drv->glFormat) {
Jason Samseb4fe182011-05-26 16:33:01 -0700158 return;
159 }
160
Jason Sams709a0972012-11-15 18:18:04 -0800161 if (!alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Samseb4fe182011-05-26 16:33:01 -0700162 return;
163 }
164
165 bool isFirstUpload = false;
166
167 if (!drv->textureID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700168 RSD_CALL_GL(glGenTextures, 1, &drv->textureID);
Jason Samseb4fe182011-05-26 16:33:01 -0700169 isFirstUpload = true;
170 }
171
172 Upload2DTexture(rsc, alloc, isFirstUpload);
173
174 if (!(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
Jason Sams709a0972012-11-15 18:18:04 -0800175 if (alloc->mHal.drvState.lod[0].mallocPtr) {
176 free(alloc->mHal.drvState.lod[0].mallocPtr);
177 alloc->mHal.drvState.lod[0].mallocPtr = NULL;
Jason Samseb4fe182011-05-26 16:33:01 -0700178 }
179 }
180 rsdGLCheckError(rsc, "UploadToTexture");
181}
182
183static void AllocateRenderTarget(const Context *rsc, const Allocation *alloc) {
184 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
185
Jason Samsa614ae12011-05-26 17:05:51 -0700186 if (!drv->glFormat) {
Jason Samseb4fe182011-05-26 16:33:01 -0700187 return;
188 }
189
190 if (!drv->renderTargetID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700191 RSD_CALL_GL(glGenRenderbuffers, 1, &drv->renderTargetID);
Jason Samseb4fe182011-05-26 16:33:01 -0700192
193 if (!drv->renderTargetID) {
194 // This should generally not happen
Steve Blockaf12ac62012-01-06 19:20:56 +0000195 ALOGE("allocateRenderTarget failed to gen mRenderTargetID");
Jason Samseb4fe182011-05-26 16:33:01 -0700196 rsc->dumpDebug();
197 return;
198 }
Jason Sams2382aba2011-09-13 15:41:01 -0700199 RSD_CALL_GL(glBindRenderbuffer, GL_RENDERBUFFER, drv->renderTargetID);
200 RSD_CALL_GL(glRenderbufferStorage, GL_RENDERBUFFER, drv->glFormat,
Jason Samseb4fe182011-05-26 16:33:01 -0700201 alloc->mHal.state.dimensionX, alloc->mHal.state.dimensionY);
202 }
203 rsdGLCheckError(rsc, "AllocateRenderTarget");
204}
205
206static void UploadToBufferObject(const Context *rsc, const Allocation *alloc) {
207 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
208
209 rsAssert(!alloc->mHal.state.type->getDimY());
210 rsAssert(!alloc->mHal.state.type->getDimZ());
211
212 //alloc->mHal.state.usageFlags |= RS_ALLOCATION_USAGE_GRAPHICS_VERTEX;
213
214 if (!drv->bufferID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700215 RSD_CALL_GL(glGenBuffers, 1, &drv->bufferID);
Jason Samseb4fe182011-05-26 16:33:01 -0700216 }
217 if (!drv->bufferID) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000218 ALOGE("Upload to buffer object failed");
Jason Samseb4fe182011-05-26 16:33:01 -0700219 drv->uploadDeferred = true;
220 return;
221 }
Jason Sams2382aba2011-09-13 15:41:01 -0700222 RSD_CALL_GL(glBindBuffer, drv->glTarget, drv->bufferID);
223 RSD_CALL_GL(glBufferData, drv->glTarget, alloc->mHal.state.type->getSizeBytes(),
Jason Sams709a0972012-11-15 18:18:04 -0800224 alloc->mHal.drvState.lod[0].mallocPtr, GL_DYNAMIC_DRAW);
Jason Sams2382aba2011-09-13 15:41:01 -0700225 RSD_CALL_GL(glBindBuffer, drv->glTarget, 0);
Jason Samseb4fe182011-05-26 16:33:01 -0700226 rsdGLCheckError(rsc, "UploadToBufferObject");
227}
228
Jason Sams463bfce2012-08-21 13:54:42 -0700229static size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc,
230 const Type *type, uint8_t *ptr) {
Jason Sams709a0972012-11-15 18:18:04 -0800231 alloc->mHal.drvState.lod[0].dimX = type->getDimX();
232 alloc->mHal.drvState.lod[0].dimY = type->getDimY();
233 alloc->mHal.drvState.lod[0].mallocPtr = 0;
234 alloc->mHal.drvState.lod[0].stride = alloc->mHal.drvState.lod[0].dimX * type->getElementSizeBytes();
235 alloc->mHal.drvState.lodCount = type->getLODCount();
236 alloc->mHal.drvState.faceCount = type->getDimFaces();
Jason Sams807fdc42012-07-25 17:55:39 -0700237
238 size_t offsets[Allocation::MAX_LOD];
239 memset(offsets, 0, sizeof(offsets));
240
Jason Sams709a0972012-11-15 18:18:04 -0800241 size_t o = alloc->mHal.drvState.lod[0].stride * rsMax(alloc->mHal.drvState.lod[0].dimY, 1u) *
242 rsMax(alloc->mHal.drvState.lod[0].dimZ, 1u);
243 if(alloc->mHal.drvState.lodCount > 1) {
244 uint32_t tx = alloc->mHal.drvState.lod[0].dimX;
245 uint32_t ty = alloc->mHal.drvState.lod[0].dimY;
246 uint32_t tz = alloc->mHal.drvState.lod[0].dimZ;
247 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
248 alloc->mHal.drvState.lod[lod].dimX = tx;
249 alloc->mHal.drvState.lod[lod].dimY = ty;
250 alloc->mHal.drvState.lod[lod].dimZ = tz;
251 alloc->mHal.drvState.lod[lod].stride = tx * type->getElementSizeBytes();
Jason Sams807fdc42012-07-25 17:55:39 -0700252 offsets[lod] = o;
Jason Sams709a0972012-11-15 18:18:04 -0800253 o += alloc->mHal.drvState.lod[lod].stride * rsMax(ty, 1u) * rsMax(tz, 1u);
Jason Sams807fdc42012-07-25 17:55:39 -0700254 if (tx > 1) tx >>= 1;
255 if (ty > 1) ty >>= 1;
256 if (tz > 1) tz >>= 1;
257 }
258 }
Jason Sams709a0972012-11-15 18:18:04 -0800259 alloc->mHal.drvState.faceOffset = o;
Jason Sams807fdc42012-07-25 17:55:39 -0700260
Jason Sams709a0972012-11-15 18:18:04 -0800261 alloc->mHal.drvState.lod[0].mallocPtr = ptr;
262 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
263 alloc->mHal.drvState.lod[lod].mallocPtr = ptr + offsets[lod];
Jason Sams463bfce2012-08-21 13:54:42 -0700264 }
Jason Sams463bfce2012-08-21 13:54:42 -0700265
Jason Sams709a0972012-11-15 18:18:04 -0800266 size_t allocSize = alloc->mHal.drvState.faceOffset;
267 if(alloc->mHal.drvState.faceCount) {
Jason Sams463bfce2012-08-21 13:54:42 -0700268 allocSize *= 6;
269 }
270
271 return allocSize;
272}
273
274bool rsdAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) {
275 DrvAllocation *drv = (DrvAllocation *)calloc(1, sizeof(DrvAllocation));
276 if (!drv) {
277 return false;
278 }
279 alloc->mHal.drv = drv;
280
281 // Calculate the object size.
282 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL);
283
Jason Sams807fdc42012-07-25 17:55:39 -0700284 uint8_t * ptr = NULL;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800285 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT) {
Tim Murray2e1a94d2012-11-29 13:12:25 -0800286 } else if (alloc->mHal.state.userProvidedPtr != NULL) {
287 // user-provided allocation
288 // limitations: no faces, no LOD, USAGE_SCRIPT only
289 if (alloc->mHal.state.usageFlags != RS_ALLOCATION_USAGE_SCRIPT) {
290 ALOGE("Can't use user-allocated buffers if usage is not USAGE_SCRIPT");
291 return false;
292 }
293 if (alloc->getType()->getDimLOD() || alloc->getType()->getDimFaces()) {
294 ALOGE("User-allocated buffers must not have multiple faces or LODs");
295 return false;
296 }
297 ptr = (uint8_t*)alloc->mHal.state.userProvidedPtr;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800298 } else {
Tim Murray2e1a94d2012-11-29 13:12:25 -0800299 if (forceZero) {
300 ptr = (uint8_t *)calloc(1, allocSize);
301 } else {
302 ptr = (uint8_t *)malloc(allocSize);
303 }
Jason Sams179e9a42011-11-23 15:02:15 -0800304 if (!ptr) {
305 free(drv);
306 return false;
307 }
Jason Samseb4fe182011-05-26 16:33:01 -0700308 }
Jason Sams463bfce2012-08-21 13:54:42 -0700309 // Build the pointer tables
310 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), ptr);
311 if(allocSize != verifySize) {
312 rsAssert(!"Size mismatch");
Jason Sams807fdc42012-07-25 17:55:39 -0700313 }
Jason Samseb4fe182011-05-26 16:33:01 -0700314
315 drv->glTarget = GL_NONE;
316 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
317 if (alloc->mHal.state.hasFaces) {
318 drv->glTarget = GL_TEXTURE_CUBE_MAP;
319 } else {
320 drv->glTarget = GL_TEXTURE_2D;
321 }
322 } else {
323 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
324 drv->glTarget = GL_ARRAY_BUFFER;
325 }
326 }
327
Jason Samsa614ae12011-05-26 17:05:51 -0700328 drv->glType = rsdTypeToGLType(alloc->mHal.state.type->getElement()->getComponent().getType());
329 drv->glFormat = rsdKindToGLFormat(alloc->mHal.state.type->getElement()->getComponent().getKind());
330
Jason Samseb4fe182011-05-26 16:33:01 -0700331 if (alloc->mHal.state.usageFlags & ~RS_ALLOCATION_USAGE_SCRIPT) {
332 drv->uploadDeferred = true;
333 }
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700334
Jason Samsb3220332012-04-02 14:41:54 -0700335
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700336 drv->readBackFBO = NULL;
337
Jason Samseb4fe182011-05-26 16:33:01 -0700338 return true;
339}
340
341void rsdAllocationDestroy(const Context *rsc, Allocation *alloc) {
342 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
343
344 if (drv->bufferID) {
345 // Causes a SW crash....
Steve Block65982012011-10-20 11:56:00 +0100346 //ALOGV(" mBufferID %i", mBufferID);
Jason Samseb4fe182011-05-26 16:33:01 -0700347 //glDeleteBuffers(1, &mBufferID);
348 //mBufferID = 0;
349 }
350 if (drv->textureID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700351 RSD_CALL_GL(glDeleteTextures, 1, &drv->textureID);
Jason Samseb4fe182011-05-26 16:33:01 -0700352 drv->textureID = 0;
353 }
354 if (drv->renderTargetID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700355 RSD_CALL_GL(glDeleteRenderbuffers, 1, &drv->renderTargetID);
Jason Samseb4fe182011-05-26 16:33:01 -0700356 drv->renderTargetID = 0;
357 }
358
Jason Sams709a0972012-11-15 18:18:04 -0800359 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Tim Murray2e1a94d2012-11-29 13:12:25 -0800360 // don't free user-allocated ptrs
361 if (!alloc->mHal.state.userProvidedPtr) {
362 free(alloc->mHal.drvState.lod[0].mallocPtr);
363 }
Jason Sams709a0972012-11-15 18:18:04 -0800364 alloc->mHal.drvState.lod[0].mallocPtr = NULL;
Jason Samseb4fe182011-05-26 16:33:01 -0700365 }
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700366 if (drv->readBackFBO != NULL) {
367 delete drv->readBackFBO;
368 drv->readBackFBO = NULL;
369 }
Jason Samseb4fe182011-05-26 16:33:01 -0700370 free(drv);
371 alloc->mHal.drv = NULL;
372}
373
374void rsdAllocationResize(const Context *rsc, const Allocation *alloc,
375 const Type *newType, bool zeroNew) {
Jason Sams709a0972012-11-15 18:18:04 -0800376 void * oldPtr = alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams463bfce2012-08-21 13:54:42 -0700377 // Calculate the object size
378 size_t s = AllocationBuildPointerTable(rsc, alloc, newType, NULL);
379 uint8_t *ptr = (uint8_t *)realloc(oldPtr, s);
380 // Build the relative pointer tables.
381 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, newType, ptr);
382 if(s != verifySize) {
383 rsAssert(!"Size mismatch");
384 }
Jason Samseb4fe182011-05-26 16:33:01 -0700385
386 const uint32_t oldDimX = alloc->mHal.state.dimensionX;
387 const uint32_t dimX = newType->getDimX();
388
389 if (dimX > oldDimX) {
Jason Sams463bfce2012-08-21 13:54:42 -0700390 uint32_t stride = alloc->mHal.state.elementSizeBytes;
Jason Sams709a0972012-11-15 18:18:04 -0800391 memset(((uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr) + stride * oldDimX,
Jason Sams2275e9c2012-04-16 17:01:26 -0700392 0, stride * (dimX - oldDimX));
Jason Samseb4fe182011-05-26 16:33:01 -0700393 }
394}
395
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700396static void rsdAllocationSyncFromFBO(const Context *rsc, const Allocation *alloc) {
397 if (!alloc->getIsScript()) {
398 return; // nothing to sync
399 }
400
401 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
402 RsdFrameBufferObj *lastFbo = dc->gl.currentFrameBuffer;
403
404 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
405 if (!drv->textureID && !drv->renderTargetID) {
406 return; // nothing was rendered here yet, so nothing to sync
407 }
408 if (drv->readBackFBO == NULL) {
409 drv->readBackFBO = new RsdFrameBufferObj();
410 drv->readBackFBO->setColorTarget(drv, 0);
411 drv->readBackFBO->setDimensions(alloc->getType()->getDimX(),
412 alloc->getType()->getDimY());
413 }
414
415 // Bind the framebuffer object so we can read back from it
416 drv->readBackFBO->setActive(rsc);
417
418 // Do the readback
Jason Sams709a0972012-11-15 18:18:04 -0800419 RSD_CALL_GL(glReadPixels, 0, 0, alloc->mHal.drvState.lod[0].dimX,
420 alloc->mHal.drvState.lod[0].dimY,
421 drv->glFormat, drv->glType, alloc->mHal.drvState.lod[0].mallocPtr);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700422
423 // Revert framebuffer to its original
424 lastFbo->setActive(rsc);
425}
Jason Samseb4fe182011-05-26 16:33:01 -0700426
427
428void rsdAllocationSyncAll(const Context *rsc, const Allocation *alloc,
429 RsAllocationUsageType src) {
430 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
431
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700432 if (src == RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
433 if(!alloc->getIsRenderTarget()) {
434 rsc->setError(RS_ERROR_FATAL_DRIVER,
435 "Attempting to sync allocation from render target, "
436 "for non-render target allocation");
437 } else if (alloc->getType()->getElement()->getKind() != RS_KIND_PIXEL_RGBA) {
438 rsc->setError(RS_ERROR_FATAL_DRIVER, "Cannot only sync from RGBA"
439 "render target");
440 } else {
441 rsdAllocationSyncFromFBO(rsc, alloc);
442 }
Jason Samseb4fe182011-05-26 16:33:01 -0700443 return;
444 }
445
446 rsAssert(src == RS_ALLOCATION_USAGE_SCRIPT);
447
448 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
449 UploadToTexture(rsc, alloc);
450 } else {
Jason Samsb3220332012-04-02 14:41:54 -0700451 if ((alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) &&
Jason Sams0dc66932012-04-10 17:05:49 -0700452 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT)) {
Jason Samseb4fe182011-05-26 16:33:01 -0700453 AllocateRenderTarget(rsc, alloc);
454 }
455 }
456 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
457 UploadToBufferObject(rsc, alloc);
458 }
459
460 drv->uploadDeferred = false;
461}
462
463void rsdAllocationMarkDirty(const Context *rsc, const Allocation *alloc) {
464 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
465 drv->uploadDeferred = true;
466}
467
Jason Sams41e373d2012-01-13 14:01:20 -0800468int32_t rsdAllocationInitSurfaceTexture(const Context *rsc, const Allocation *alloc) {
469 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
470 UploadToTexture(rsc, alloc);
471 return drv->textureID;
472}
473
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800474static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
475 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
476
Jamie Genniscd919a12012-06-13 16:34:11 -0700477 int32_t r = native_window_dequeue_buffer_and_wait(nw, &drv->wndBuffer);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800478 if (r) {
479 rsc->setError(RS_ERROR_DRIVER, "Error getting next IO output buffer.");
480 return false;
481 }
482
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800483 // Must lock the whole surface
484 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
485 Rect bounds(drv->wndBuffer->width, drv->wndBuffer->height);
486
487 void *dst = NULL;
488 mapper.lock(drv->wndBuffer->handle,
489 GRALLOC_USAGE_SW_READ_NEVER | GRALLOC_USAGE_SW_WRITE_OFTEN,
490 bounds, &dst);
Jason Sams709a0972012-11-15 18:18:04 -0800491 alloc->mHal.drvState.lod[0].mallocPtr = dst;
492 alloc->mHal.drvState.lod[0].stride = drv->wndBuffer->stride * alloc->mHal.state.elementSizeBytes;
Jason Samsb3220332012-04-02 14:41:54 -0700493
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800494 return true;
495}
496
497void rsdAllocationSetSurfaceTexture(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
498 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
499
500 //ALOGE("rsdAllocationSetSurfaceTexture %p %p", alloc, nw);
501
Jason Samsb3220332012-04-02 14:41:54 -0700502 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
503 //TODO finish support for render target + script
504 drv->wnd = nw;
505 return;
506 }
507
508
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800509 // Cleanup old surface if there is one.
510 if (alloc->mHal.state.wndSurface) {
511 ANativeWindow *old = alloc->mHal.state.wndSurface;
512 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
513 mapper.unlock(drv->wndBuffer->handle);
Jamie Genniscd919a12012-06-13 16:34:11 -0700514 old->queueBuffer(old, drv->wndBuffer, -1);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800515 }
516
517 if (nw != NULL) {
518 int32_t r;
Jason Samsb3220332012-04-02 14:41:54 -0700519 uint32_t flags = 0;
520 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
521 flags |= GRALLOC_USAGE_SW_READ_RARELY | GRALLOC_USAGE_SW_WRITE_OFTEN;
522 }
523 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
524 flags |= GRALLOC_USAGE_HW_RENDER;
525 }
526
527 r = native_window_set_usage(nw, flags);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800528 if (r) {
529 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer usage.");
530 return;
531 }
532
533 r = native_window_set_buffers_dimensions(nw, alloc->mHal.state.dimensionX,
534 alloc->mHal.state.dimensionY);
535 if (r) {
536 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer dimensions.");
537 return;
538 }
539
540 r = native_window_set_buffer_count(nw, 3);
541 if (r) {
542 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer count.");
543 return;
544 }
545
546 IoGetBuffer(rsc, alloc, nw);
547 }
548}
549
550void rsdAllocationIoSend(const Context *rsc, Allocation *alloc) {
551 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
552 ANativeWindow *nw = alloc->mHal.state.wndSurface;
553
Jason Samsb3220332012-04-02 14:41:54 -0700554 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
555 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
556 RSD_CALL_GL(eglSwapBuffers, dc->gl.egl.display, dc->gl.egl.surface);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800557 return;
558 }
559
Jason Samsb3220332012-04-02 14:41:54 -0700560 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
561 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
562 mapper.unlock(drv->wndBuffer->handle);
Jamie Genniscd919a12012-06-13 16:34:11 -0700563 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
Jason Samsb3220332012-04-02 14:41:54 -0700564 if (r) {
565 rsc->setError(RS_ERROR_DRIVER, "Error sending IO output buffer.");
566 return;
567 }
568
569 IoGetBuffer(rsc, alloc, nw);
570 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800571}
572
573void rsdAllocationIoReceive(const Context *rsc, Allocation *alloc) {
Jason Sams3522f402012-03-23 11:47:26 -0700574 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
575 alloc->mHal.state.surfaceTexture->updateTexImage();
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800576}
577
578
Jason Samseb4fe182011-05-26 16:33:01 -0700579void rsdAllocationData1D(const Context *rsc, const Allocation *alloc,
580 uint32_t xoff, uint32_t lod, uint32_t count,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800581 const void *data, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -0700582 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
583
584 const uint32_t eSize = alloc->mHal.state.type->getElementSizeBytes();
Jason Sams807fdc42012-07-25 17:55:39 -0700585 uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -0700586 uint32_t size = count * eSize;
587
588 if (alloc->mHal.state.hasReferences) {
589 alloc->incRefs(data, count);
590 alloc->decRefs(ptr, count);
591 }
592
593 memcpy(ptr, data, size);
594 drv->uploadDeferred = true;
595}
596
597void rsdAllocationData2D(const Context *rsc, const Allocation *alloc,
598 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800599 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
Jason Samseb4fe182011-05-26 16:33:01 -0700600 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
601
602 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
603 uint32_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800604 if (!stride) {
605 stride = lineSize;
606 }
Jason Samseb4fe182011-05-26 16:33:01 -0700607
Jason Sams709a0972012-11-15 18:18:04 -0800608 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Samseb4fe182011-05-26 16:33:01 -0700609 const uint8_t *src = static_cast<const uint8_t *>(data);
Jason Sams807fdc42012-07-25 17:55:39 -0700610 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, lod, face);
Jason Samseb4fe182011-05-26 16:33:01 -0700611
612 for (uint32_t line=yoff; line < (yoff+h); line++) {
613 if (alloc->mHal.state.hasReferences) {
614 alloc->incRefs(src, w);
615 alloc->decRefs(dst, w);
616 }
617 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800618 src += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800619 dst += alloc->mHal.drvState.lod[lod].stride;
Jason Samseb4fe182011-05-26 16:33:01 -0700620 }
621 drv->uploadDeferred = true;
622 } else {
Jason Sams2382aba2011-09-13 15:41:01 -0700623 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h);
Jason Samseb4fe182011-05-26 16:33:01 -0700624 }
625}
626
627void rsdAllocationData3D(const Context *rsc, const Allocation *alloc,
628 uint32_t xoff, uint32_t yoff, uint32_t zoff,
629 uint32_t lod, RsAllocationCubemapFace face,
630 uint32_t w, uint32_t h, uint32_t d, const void *data, uint32_t sizeBytes) {
631
632}
633
Jason Sams807fdc42012-07-25 17:55:39 -0700634void rsdAllocationRead1D(const Context *rsc, const Allocation *alloc,
635 uint32_t xoff, uint32_t lod, uint32_t count,
636 void *data, size_t sizeBytes) {
Jason Sams807fdc42012-07-25 17:55:39 -0700637 const uint32_t eSize = alloc->mHal.state.type->getElementSizeBytes();
638 const uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
639 memcpy(data, ptr, count * eSize);
640}
641
642void rsdAllocationRead2D(const Context *rsc, const Allocation *alloc,
Tim Murray358747a2012-11-26 13:52:04 -0800643 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
644 uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) {
Jason Sams807fdc42012-07-25 17:55:39 -0700645 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
646 uint32_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800647 if (!stride) {
648 stride = lineSize;
649 }
Jason Sams807fdc42012-07-25 17:55:39 -0700650
Jason Sams709a0972012-11-15 18:18:04 -0800651 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams807fdc42012-07-25 17:55:39 -0700652 uint8_t *dst = static_cast<uint8_t *>(data);
653 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, lod, face);
654
655 for (uint32_t line=yoff; line < (yoff+h); line++) {
656 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800657 dst += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800658 src += alloc->mHal.drvState.lod[lod].stride;
Jason Sams807fdc42012-07-25 17:55:39 -0700659 }
660 } else {
661 ALOGE("Add code to readback from non-script memory");
662 }
663}
664
Tim Murray358747a2012-11-26 13:52:04 -0800665
Jason Sams807fdc42012-07-25 17:55:39 -0700666void rsdAllocationRead3D(const Context *rsc, const Allocation *alloc,
667 uint32_t xoff, uint32_t yoff, uint32_t zoff,
668 uint32_t lod, RsAllocationCubemapFace face,
669 uint32_t w, uint32_t h, uint32_t d, void *data, uint32_t sizeBytes) {
670
671}
672
673void * rsdAllocationLock1D(const android::renderscript::Context *rsc,
674 const android::renderscript::Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -0800675 return alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams807fdc42012-07-25 17:55:39 -0700676}
677
678void rsdAllocationUnlock1D(const android::renderscript::Context *rsc,
679 const android::renderscript::Allocation *alloc) {
680
681}
682
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700683void rsdAllocationData1D_alloc(const android::renderscript::Context *rsc,
684 const android::renderscript::Allocation *dstAlloc,
685 uint32_t dstXoff, uint32_t dstLod, uint32_t count,
686 const android::renderscript::Allocation *srcAlloc,
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700687 uint32_t srcXoff, uint32_t srcLod) {
688}
689
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700690
691void rsdAllocationData2D_alloc_script(const android::renderscript::Context *rsc,
692 const android::renderscript::Allocation *dstAlloc,
693 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
694 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
695 const android::renderscript::Allocation *srcAlloc,
696 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
697 RsAllocationCubemapFace srcFace) {
698 uint32_t elementSize = dstAlloc->getType()->getElementSizeBytes();
699 for (uint32_t i = 0; i < h; i ++) {
Jason Sams807fdc42012-07-25 17:55:39 -0700700 uint8_t *dstPtr = GetOffsetPtr(dstAlloc, dstXoff, dstYoff + i, dstLod, dstFace);
701 uint8_t *srcPtr = GetOffsetPtr(srcAlloc, srcXoff, srcYoff + i, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700702 memcpy(dstPtr, srcPtr, w * elementSize);
703
Steve Blockaf12ac62012-01-06 19:20:56 +0000704 //ALOGE("COPIED dstXoff(%u), dstYoff(%u), dstLod(%u), dstFace(%u), w(%u), h(%u), srcXoff(%u), srcYoff(%u), srcLod(%u), srcFace(%u)",
Stephen Hines0a44ab42011-06-23 16:18:28 -0700705 // dstXoff, dstYoff, dstLod, dstFace, w, h, srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700706 }
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700707}
708
709void rsdAllocationData2D_alloc(const android::renderscript::Context *rsc,
710 const android::renderscript::Allocation *dstAlloc,
711 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
712 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
713 const android::renderscript::Allocation *srcAlloc,
714 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
715 RsAllocationCubemapFace srcFace) {
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700716 if (!dstAlloc->getIsScript() && !srcAlloc->getIsScript()) {
717 rsc->setError(RS_ERROR_FATAL_DRIVER, "Non-script allocation copies not "
718 "yet implemented.");
719 return;
720 }
721 rsdAllocationData2D_alloc_script(rsc, dstAlloc, dstXoff, dstYoff,
722 dstLod, dstFace, w, h, srcAlloc,
723 srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700724}
725
726void rsdAllocationData3D_alloc(const android::renderscript::Context *rsc,
727 const android::renderscript::Allocation *dstAlloc,
728 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
729 uint32_t dstLod, RsAllocationCubemapFace dstFace,
730 uint32_t w, uint32_t h, uint32_t d,
731 const android::renderscript::Allocation *srcAlloc,
732 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
733 uint32_t srcLod, RsAllocationCubemapFace srcFace) {
734}
735
Jason Samseb4fe182011-05-26 16:33:01 -0700736void rsdAllocationElementData1D(const Context *rsc, const Allocation *alloc,
737 uint32_t x,
738 const void *data, uint32_t cIdx, uint32_t sizeBytes) {
739 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
740
741 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams807fdc42012-07-25 17:55:39 -0700742 uint8_t * ptr = GetOffsetPtr(alloc, x, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -0700743
744 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
745 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
746
747 if (alloc->mHal.state.hasReferences) {
748 e->incRefs(data);
749 e->decRefs(ptr);
750 }
751
752 memcpy(ptr, data, sizeBytes);
753 drv->uploadDeferred = true;
754}
755
756void rsdAllocationElementData2D(const Context *rsc, const Allocation *alloc,
757 uint32_t x, uint32_t y,
758 const void *data, uint32_t cIdx, uint32_t sizeBytes) {
759 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
760
761 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams807fdc42012-07-25 17:55:39 -0700762 uint8_t * ptr = GetOffsetPtr(alloc, x, y, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -0700763
764 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
765 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
766
767 if (alloc->mHal.state.hasReferences) {
768 e->incRefs(data);
769 e->decRefs(ptr);
770 }
771
772 memcpy(ptr, data, sizeBytes);
773 drv->uploadDeferred = true;
774}
775
Jason Sams61a4bb72012-07-25 19:33:43 -0700776static void mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -0800777 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
778 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -0700779
780 for (uint32_t y=0; y < h; y++) {
781 uint16_t *oPtr = (uint16_t *)GetOffsetPtr(alloc, 0, y, lod + 1, face);
782 const uint16_t *i1 = (uint16_t *)GetOffsetPtr(alloc, 0, y*2, lod, face);
783 const uint16_t *i2 = (uint16_t *)GetOffsetPtr(alloc, 0, y*2+1, lod, face);
784
785 for (uint32_t x=0; x < w; x++) {
786 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
787 oPtr ++;
788 i1 += 2;
789 i2 += 2;
790 }
791 }
792}
793
794static void mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -0800795 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
796 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -0700797
798 for (uint32_t y=0; y < h; y++) {
799 uint32_t *oPtr = (uint32_t *)GetOffsetPtr(alloc, 0, y, lod + 1, face);
800 const uint32_t *i1 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2, lod, face);
801 const uint32_t *i2 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2+1, lod, face);
802
803 for (uint32_t x=0; x < w; x++) {
804 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
805 oPtr ++;
806 i1 += 2;
807 i2 += 2;
808 }
809 }
810}
811
812static void mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -0800813 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
814 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -0700815
816 for (uint32_t y=0; y < h; y++) {
817 uint8_t *oPtr = GetOffsetPtr(alloc, 0, y, lod + 1, face);
818 const uint8_t *i1 = GetOffsetPtr(alloc, 0, y*2, lod, face);
819 const uint8_t *i2 = GetOffsetPtr(alloc, 0, y*2+1, lod, face);
820
821 for (uint32_t x=0; x < w; x++) {
822 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f);
823 oPtr ++;
824 i1 += 2;
825 i2 += 2;
826 }
827 }
828}
829
830void rsdAllocationGenerateMipmaps(const Context *rsc, const Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -0800831 if(!alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700832 return;
833 }
834 uint32_t numFaces = alloc->getType()->getDimFaces() ? 6 : 1;
835 for (uint32_t face = 0; face < numFaces; face ++) {
836 for (uint32_t lod=0; lod < (alloc->getType()->getLODCount() -1); lod++) {
837 switch (alloc->getType()->getElement()->getSizeBits()) {
838 case 32:
839 mip8888(alloc, lod, (RsAllocationCubemapFace)face);
840 break;
841 case 16:
842 mip565(alloc, lod, (RsAllocationCubemapFace)face);
843 break;
844 case 8:
845 mip8(alloc, lod, (RsAllocationCubemapFace)face);
846 break;
847 }
848 }
849 }
850}
851
Jason Samseb4fe182011-05-26 16:33:01 -0700852