blob: 66eddeb9d49cf1a8f2a4c1b84f0d16e542d9417d [file] [log] [blame]
Jason Samseb4fe182011-05-26 16:33:01 -07001/*
Jason Samsbc0ca6b2013-02-15 18:13:43 -08002 * Copyright (C) 2013 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
Jason Samseb4fe182011-05-26 16:33:01 -070017#include "rsdCore.h"
Jason Samseb4fe182011-05-26 16:33:01 -070018#include "rsdAllocation.h"
19
20#include "rsAllocation.h"
21
Stephen Hinesb0934b62013-07-03 17:27:38 -070022#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
Jason Sams7ac2a4d2012-02-15 12:04:24 -080023#include "system/window.h"
Jason Sams7ac2a4d2012-02-15 12:04:24 -080024#include "ui/Rect.h"
25#include "ui/GraphicBufferMapper.h"
Tim Murray0b575de2013-03-15 15:56:43 -070026#endif
Jason Sams93eacc72012-12-18 14:26:57 -080027
Stephen Hines10f31702013-08-15 17:30:12 -070028#ifdef RS_COMPATIBILITY_LIB
29#include "rsCompatibilityLib.h"
30#else
Jason Sams93eacc72012-12-18 14:26:57 -080031#include "rsdFrameBufferObj.h"
Andy McFadden58fd6a52012-12-18 09:50:03 -080032#include "gui/GLConsumer.h"
Jason Sams733396b2013-02-22 12:46:18 -080033#include "gui/CpuConsumer.h"
34#include "gui/Surface.h"
Jason Sams93eacc72012-12-18 14:26:57 -080035#include "hardware/gralloc.h"
Jason Sams7ac2a4d2012-02-15 12:04:24 -080036
Jason Samseb4fe182011-05-26 16:33:01 -070037#include <GLES/gl.h>
38#include <GLES2/gl2.h>
39#include <GLES/glext.h>
Jason Sams93eacc72012-12-18 14:26:57 -080040#endif
Jason Samseb4fe182011-05-26 16:33:01 -070041
Tim Murray0b575de2013-03-15 15:56:43 -070042#ifdef RS_SERVER
43// server requires malloc.h for memalign
44#include <malloc.h>
45#endif
46
Jason Samseb4fe182011-05-26 16:33:01 -070047using namespace android;
48using namespace android::renderscript;
49
50
Jason Sams93eacc72012-12-18 14:26:57 -080051#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -070052const static GLenum gFaceOrder[] = {
53 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
54 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
55 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
56 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
57 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
58 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
59};
60
Jason Samsa614ae12011-05-26 17:05:51 -070061GLenum rsdTypeToGLType(RsDataType t) {
62 switch (t) {
63 case RS_TYPE_UNSIGNED_5_6_5: return GL_UNSIGNED_SHORT_5_6_5;
64 case RS_TYPE_UNSIGNED_5_5_5_1: return GL_UNSIGNED_SHORT_5_5_5_1;
65 case RS_TYPE_UNSIGNED_4_4_4_4: return GL_UNSIGNED_SHORT_4_4_4_4;
66
67 //case RS_TYPE_FLOAT_16: return GL_HALF_FLOAT;
68 case RS_TYPE_FLOAT_32: return GL_FLOAT;
69 case RS_TYPE_UNSIGNED_8: return GL_UNSIGNED_BYTE;
70 case RS_TYPE_UNSIGNED_16: return GL_UNSIGNED_SHORT;
71 case RS_TYPE_SIGNED_8: return GL_BYTE;
72 case RS_TYPE_SIGNED_16: return GL_SHORT;
73 default: break;
74 }
75 return 0;
76}
77
78GLenum rsdKindToGLFormat(RsDataKind k) {
79 switch (k) {
80 case RS_KIND_PIXEL_L: return GL_LUMINANCE;
81 case RS_KIND_PIXEL_A: return GL_ALPHA;
82 case RS_KIND_PIXEL_LA: return GL_LUMINANCE_ALPHA;
83 case RS_KIND_PIXEL_RGB: return GL_RGB;
84 case RS_KIND_PIXEL_RGBA: return GL_RGBA;
85 case RS_KIND_PIXEL_DEPTH: return GL_DEPTH_COMPONENT16;
86 default: break;
87 }
88 return 0;
89}
Jason Sams93eacc72012-12-18 14:26:57 -080090#endif
Jason Samsa614ae12011-05-26 17:05:51 -070091
Jason Sams807fdc42012-07-25 17:55:39 -070092uint8_t *GetOffsetPtr(const android::renderscript::Allocation *alloc,
Jason Sams3bbc0fd2013-04-09 14:16:13 -070093 uint32_t xoff, uint32_t yoff, uint32_t zoff,
94 uint32_t lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -080095 uint8_t *ptr = (uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
96 ptr += face * alloc->mHal.drvState.faceOffset;
Jason Sams3bbc0fd2013-04-09 14:16:13 -070097 ptr += zoff * alloc->mHal.drvState.lod[lod].dimY * alloc->mHal.drvState.lod[lod].stride;
Jason Sams709a0972012-11-15 18:18:04 -080098 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
Jason Sams807fdc42012-07-25 17:55:39 -070099 ptr += xoff * alloc->mHal.state.elementSizeBytes;
100 return ptr;
101}
102
Jason Samsa614ae12011-05-26 17:05:51 -0700103
Jason Sams2382aba2011-09-13 15:41:01 -0700104static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr,
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
106 RsAllocationCubemapFace face, uint32_t w, uint32_t h) {
Jason Sams93eacc72012-12-18 14:26:57 -0800107#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700108 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
109
Jason Samseb4fe182011-05-26 16:33:01 -0700110 rsAssert(drv->textureID);
Jason Sams2382aba2011-09-13 15:41:01 -0700111 RSD_CALL_GL(glBindTexture, drv->glTarget, drv->textureID);
112 RSD_CALL_GL(glPixelStorei, GL_UNPACK_ALIGNMENT, 1);
Jason Samseb4fe182011-05-26 16:33:01 -0700113 GLenum t = GL_TEXTURE_2D;
114 if (alloc->mHal.state.hasFaces) {
115 t = gFaceOrder[face];
116 }
Jason Sams2382aba2011-09-13 15:41:01 -0700117 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
Jason Sams93eacc72012-12-18 14:26:57 -0800118#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700119}
120
121
Jason Sams93eacc72012-12-18 14:26:57 -0800122#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700123static void Upload2DTexture(const Context *rsc, const Allocation *alloc, bool isFirstUpload) {
124 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
125
Jason Sams2382aba2011-09-13 15:41:01 -0700126 RSD_CALL_GL(glBindTexture, drv->glTarget, drv->textureID);
127 RSD_CALL_GL(glPixelStorei, GL_UNPACK_ALIGNMENT, 1);
Jason Samseb4fe182011-05-26 16:33:01 -0700128
129 uint32_t faceCount = 1;
130 if (alloc->mHal.state.hasFaces) {
131 faceCount = 6;
132 }
133
134 rsdGLCheckError(rsc, "Upload2DTexture 1 ");
135 for (uint32_t face = 0; face < faceCount; face ++) {
136 for (uint32_t lod = 0; lod < alloc->mHal.state.type->getLODCount(); lod++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700137 const uint8_t *p = GetOffsetPtr(alloc, 0, 0, 0, lod, (RsAllocationCubemapFace)face);
Jason Samseb4fe182011-05-26 16:33:01 -0700138
139 GLenum t = GL_TEXTURE_2D;
140 if (alloc->mHal.state.hasFaces) {
141 t = gFaceOrder[face];
142 }
143
144 if (isFirstUpload) {
Jason Sams2382aba2011-09-13 15:41:01 -0700145 RSD_CALL_GL(glTexImage2D, t, lod, drv->glFormat,
Jason Samseb4fe182011-05-26 16:33:01 -0700146 alloc->mHal.state.type->getLODDimX(lod),
147 alloc->mHal.state.type->getLODDimY(lod),
Jason Samsa614ae12011-05-26 17:05:51 -0700148 0, drv->glFormat, drv->glType, p);
Jason Samseb4fe182011-05-26 16:33:01 -0700149 } else {
Jason Sams2382aba2011-09-13 15:41:01 -0700150 RSD_CALL_GL(glTexSubImage2D, t, lod, 0, 0,
Jason Samseb4fe182011-05-26 16:33:01 -0700151 alloc->mHal.state.type->getLODDimX(lod),
152 alloc->mHal.state.type->getLODDimY(lod),
Jason Samsa614ae12011-05-26 17:05:51 -0700153 drv->glFormat, drv->glType, p);
Jason Samseb4fe182011-05-26 16:33:01 -0700154 }
155 }
156 }
157
158 if (alloc->mHal.state.mipmapControl == RS_ALLOCATION_MIPMAP_ON_SYNC_TO_TEXTURE) {
Jason Sams2382aba2011-09-13 15:41:01 -0700159 RSD_CALL_GL(glGenerateMipmap, drv->glTarget);
Jason Samseb4fe182011-05-26 16:33:01 -0700160 }
161 rsdGLCheckError(rsc, "Upload2DTexture");
162}
Jason Sams93eacc72012-12-18 14:26:57 -0800163#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700164
165static void UploadToTexture(const Context *rsc, const Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800166#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700167 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
168
Jason Sams3522f402012-03-23 11:47:26 -0700169 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) {
Jason Sams41e373d2012-01-13 14:01:20 -0800170 if (!drv->textureID) {
171 RSD_CALL_GL(glGenTextures, 1, &drv->textureID);
172 }
173 return;
174 }
175
Jason Samsa614ae12011-05-26 17:05:51 -0700176 if (!drv->glType || !drv->glFormat) {
Jason Samseb4fe182011-05-26 16:33:01 -0700177 return;
178 }
179
Jason Sams709a0972012-11-15 18:18:04 -0800180 if (!alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Samseb4fe182011-05-26 16:33:01 -0700181 return;
182 }
183
184 bool isFirstUpload = false;
185
186 if (!drv->textureID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700187 RSD_CALL_GL(glGenTextures, 1, &drv->textureID);
Jason Samseb4fe182011-05-26 16:33:01 -0700188 isFirstUpload = true;
189 }
190
191 Upload2DTexture(rsc, alloc, isFirstUpload);
192
193 if (!(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
Jason Sams709a0972012-11-15 18:18:04 -0800194 if (alloc->mHal.drvState.lod[0].mallocPtr) {
195 free(alloc->mHal.drvState.lod[0].mallocPtr);
196 alloc->mHal.drvState.lod[0].mallocPtr = NULL;
Jason Samseb4fe182011-05-26 16:33:01 -0700197 }
198 }
199 rsdGLCheckError(rsc, "UploadToTexture");
Jason Sams93eacc72012-12-18 14:26:57 -0800200#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700201}
202
203static void AllocateRenderTarget(const Context *rsc, const Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800204#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700205 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
206
Jason Samsa614ae12011-05-26 17:05:51 -0700207 if (!drv->glFormat) {
Jason Samseb4fe182011-05-26 16:33:01 -0700208 return;
209 }
210
211 if (!drv->renderTargetID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700212 RSD_CALL_GL(glGenRenderbuffers, 1, &drv->renderTargetID);
Jason Samseb4fe182011-05-26 16:33:01 -0700213
214 if (!drv->renderTargetID) {
215 // This should generally not happen
Steve Blockaf12ac62012-01-06 19:20:56 +0000216 ALOGE("allocateRenderTarget failed to gen mRenderTargetID");
Jason Samseb4fe182011-05-26 16:33:01 -0700217 rsc->dumpDebug();
218 return;
219 }
Jason Sams2382aba2011-09-13 15:41:01 -0700220 RSD_CALL_GL(glBindRenderbuffer, GL_RENDERBUFFER, drv->renderTargetID);
221 RSD_CALL_GL(glRenderbufferStorage, GL_RENDERBUFFER, drv->glFormat,
Jason Samsa572aca2013-01-09 11:52:26 -0800222 alloc->mHal.drvState.lod[0].dimX, alloc->mHal.drvState.lod[0].dimY);
Jason Samseb4fe182011-05-26 16:33:01 -0700223 }
224 rsdGLCheckError(rsc, "AllocateRenderTarget");
Jason Sams93eacc72012-12-18 14:26:57 -0800225#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700226}
227
228static void UploadToBufferObject(const Context *rsc, const Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800229#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700230 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
231
232 rsAssert(!alloc->mHal.state.type->getDimY());
233 rsAssert(!alloc->mHal.state.type->getDimZ());
234
235 //alloc->mHal.state.usageFlags |= RS_ALLOCATION_USAGE_GRAPHICS_VERTEX;
236
237 if (!drv->bufferID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700238 RSD_CALL_GL(glGenBuffers, 1, &drv->bufferID);
Jason Samseb4fe182011-05-26 16:33:01 -0700239 }
240 if (!drv->bufferID) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000241 ALOGE("Upload to buffer object failed");
Jason Samseb4fe182011-05-26 16:33:01 -0700242 drv->uploadDeferred = true;
243 return;
244 }
Jason Sams2382aba2011-09-13 15:41:01 -0700245 RSD_CALL_GL(glBindBuffer, drv->glTarget, drv->bufferID);
246 RSD_CALL_GL(glBufferData, drv->glTarget, alloc->mHal.state.type->getSizeBytes(),
Jason Sams709a0972012-11-15 18:18:04 -0800247 alloc->mHal.drvState.lod[0].mallocPtr, GL_DYNAMIC_DRAW);
Jason Sams2382aba2011-09-13 15:41:01 -0700248 RSD_CALL_GL(glBindBuffer, drv->glTarget, 0);
Jason Samseb4fe182011-05-26 16:33:01 -0700249 rsdGLCheckError(rsc, "UploadToBufferObject");
Jason Sams93eacc72012-12-18 14:26:57 -0800250#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700251}
252
Tim Murray0b575de2013-03-15 15:56:43 -0700253
Jason Sams9d8e5af2013-02-28 14:00:08 -0800254static size_t DeriveYUVLayout(int yuv, Allocation::Hal::DrvState *state) {
Jason Sams733396b2013-02-22 12:46:18 -0800255 // YUV only supports basic 2d
256 // so we can stash the plane pointers in the mipmap levels.
Jason Sams9d8e5af2013-02-28 14:00:08 -0800257 size_t uvSize = 0;
Tim Murray0b575de2013-03-15 15:56:43 -0700258#ifndef RS_SERVER
Jason Sams733396b2013-02-22 12:46:18 -0800259 switch(yuv) {
260 case HAL_PIXEL_FORMAT_YV12:
Jason Sams4961cce2013-04-11 16:11:46 -0700261 state->lod[2].dimX = state->lod[0].dimX / 2;
262 state->lod[2].dimY = state->lod[0].dimY / 2;
263 state->lod[2].stride = rsRound(state->lod[0].stride >> 1, 16);
264 state->lod[2].mallocPtr = ((uint8_t *)state->lod[0].mallocPtr) +
Jason Sams733396b2013-02-22 12:46:18 -0800265 (state->lod[0].stride * state->lod[0].dimY);
Jason Sams9d8e5af2013-02-28 14:00:08 -0800266 uvSize += state->lod[2].stride * state->lod[2].dimY;
Jason Sams733396b2013-02-22 12:46:18 -0800267
Jason Sams4961cce2013-04-11 16:11:46 -0700268 state->lod[1].dimX = state->lod[2].dimX;
269 state->lod[1].dimY = state->lod[2].dimY;
270 state->lod[1].stride = state->lod[2].stride;
271 state->lod[1].mallocPtr = ((uint8_t *)state->lod[2].mallocPtr) +
272 (state->lod[2].stride * state->lod[2].dimY);
273 uvSize += state->lod[1].stride * state->lod[2].dimY;
274
Jason Sams733396b2013-02-22 12:46:18 -0800275 state->lodCount = 3;
276 break;
277 case HAL_PIXEL_FORMAT_YCrCb_420_SP: // NV21
278 state->lod[1].dimX = state->lod[0].dimX;
279 state->lod[1].dimY = state->lod[0].dimY / 2;
280 state->lod[1].stride = state->lod[0].stride;
281 state->lod[1].mallocPtr = ((uint8_t *)state->lod[0].mallocPtr) +
282 (state->lod[0].stride * state->lod[0].dimY);
Jason Sams9d8e5af2013-02-28 14:00:08 -0800283 uvSize += state->lod[1].stride * state->lod[1].dimY;
Jason Sams733396b2013-02-22 12:46:18 -0800284 state->lodCount = 2;
285 break;
286 default:
287 rsAssert(0);
288 }
Tim Murray0b575de2013-03-15 15:56:43 -0700289#endif
Jason Sams9d8e5af2013-02-28 14:00:08 -0800290 return uvSize;
Jason Sams733396b2013-02-22 12:46:18 -0800291}
292
293
Jason Sams463bfce2012-08-21 13:54:42 -0700294static size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc,
295 const Type *type, uint8_t *ptr) {
Jason Sams709a0972012-11-15 18:18:04 -0800296 alloc->mHal.drvState.lod[0].dimX = type->getDimX();
297 alloc->mHal.drvState.lod[0].dimY = type->getDimY();
Jason Samsf2b611e2012-12-27 19:05:22 -0800298 alloc->mHal.drvState.lod[0].dimZ = type->getDimZ();
Jason Sams709a0972012-11-15 18:18:04 -0800299 alloc->mHal.drvState.lod[0].mallocPtr = 0;
Stephen Hines94999c32013-02-05 16:58:22 -0800300 // Stride needs to be 16-byte aligned too!
301 size_t stride = alloc->mHal.drvState.lod[0].dimX * type->getElementSizeBytes();
302 alloc->mHal.drvState.lod[0].stride = rsRound(stride, 16);
Jason Sams709a0972012-11-15 18:18:04 -0800303 alloc->mHal.drvState.lodCount = type->getLODCount();
304 alloc->mHal.drvState.faceCount = type->getDimFaces();
Jason Sams807fdc42012-07-25 17:55:39 -0700305
306 size_t offsets[Allocation::MAX_LOD];
307 memset(offsets, 0, sizeof(offsets));
308
Jason Sams709a0972012-11-15 18:18:04 -0800309 size_t o = alloc->mHal.drvState.lod[0].stride * rsMax(alloc->mHal.drvState.lod[0].dimY, 1u) *
310 rsMax(alloc->mHal.drvState.lod[0].dimZ, 1u);
311 if(alloc->mHal.drvState.lodCount > 1) {
312 uint32_t tx = alloc->mHal.drvState.lod[0].dimX;
313 uint32_t ty = alloc->mHal.drvState.lod[0].dimY;
314 uint32_t tz = alloc->mHal.drvState.lod[0].dimZ;
315 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
316 alloc->mHal.drvState.lod[lod].dimX = tx;
317 alloc->mHal.drvState.lod[lod].dimY = ty;
318 alloc->mHal.drvState.lod[lod].dimZ = tz;
Stephen Hines94999c32013-02-05 16:58:22 -0800319 alloc->mHal.drvState.lod[lod].stride =
320 rsRound(tx * type->getElementSizeBytes(), 16);
Jason Sams807fdc42012-07-25 17:55:39 -0700321 offsets[lod] = o;
Jason Sams709a0972012-11-15 18:18:04 -0800322 o += alloc->mHal.drvState.lod[lod].stride * rsMax(ty, 1u) * rsMax(tz, 1u);
Jason Sams807fdc42012-07-25 17:55:39 -0700323 if (tx > 1) tx >>= 1;
324 if (ty > 1) ty >>= 1;
325 if (tz > 1) tz >>= 1;
326 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800327 } else if (alloc->mHal.state.yuv) {
Jason Sams9d8e5af2013-02-28 14:00:08 -0800328 o += DeriveYUVLayout(alloc->mHal.state.yuv, &alloc->mHal.drvState);
Jason Sams733396b2013-02-22 12:46:18 -0800329
330 for (uint32_t ct = 1; ct < alloc->mHal.drvState.lodCount; ct++) {
331 offsets[ct] = (size_t)alloc->mHal.drvState.lod[ct].mallocPtr;
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800332 }
Jason Sams807fdc42012-07-25 17:55:39 -0700333 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800334
Jason Sams709a0972012-11-15 18:18:04 -0800335 alloc->mHal.drvState.faceOffset = o;
Jason Sams807fdc42012-07-25 17:55:39 -0700336
Jason Sams709a0972012-11-15 18:18:04 -0800337 alloc->mHal.drvState.lod[0].mallocPtr = ptr;
338 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
339 alloc->mHal.drvState.lod[lod].mallocPtr = ptr + offsets[lod];
Jason Sams463bfce2012-08-21 13:54:42 -0700340 }
Jason Sams463bfce2012-08-21 13:54:42 -0700341
Jason Sams709a0972012-11-15 18:18:04 -0800342 size_t allocSize = alloc->mHal.drvState.faceOffset;
343 if(alloc->mHal.drvState.faceCount) {
Jason Sams463bfce2012-08-21 13:54:42 -0700344 allocSize *= 6;
345 }
346
347 return allocSize;
348}
349
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800350static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero) {
351 // We align all allocations to a 16-byte boundary.
352 uint8_t* ptr = (uint8_t *)memalign(16, allocSize);
353 if (!ptr) {
354 return NULL;
355 }
356 if (forceZero) {
357 memset(ptr, 0, allocSize);
358 }
359 return ptr;
360}
361
Jason Sams463bfce2012-08-21 13:54:42 -0700362bool rsdAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) {
363 DrvAllocation *drv = (DrvAllocation *)calloc(1, sizeof(DrvAllocation));
364 if (!drv) {
365 return false;
366 }
367 alloc->mHal.drv = drv;
368
369 // Calculate the object size.
370 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL);
371
Jason Sams807fdc42012-07-25 17:55:39 -0700372 uint8_t * ptr = NULL;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800373 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT) {
Jason Sams733396b2013-02-22 12:46:18 -0800374
375 } else if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) {
376 // Allocation is allocated when the surface is created
377 // in getSurface
Tim Murray2e1a94d2012-11-29 13:12:25 -0800378 } else if (alloc->mHal.state.userProvidedPtr != NULL) {
379 // user-provided allocation
Tim Murrayba24d082013-04-09 17:31:11 -0700380 // limitations: no faces, no LOD, USAGE_SCRIPT or SCRIPT+TEXTURE only
381 if (!(alloc->mHal.state.usageFlags == (RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED) ||
382 alloc->mHal.state.usageFlags == (RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED | RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE))) {
383 ALOGE("Can't use user-allocated buffers if usage is not USAGE_SCRIPT | USAGE_SHARED or USAGE_SCRIPT | USAGE_SHARED | USAGE_GRAPHICS_TEXTURE");
Tim Murray2e1a94d2012-11-29 13:12:25 -0800384 return false;
385 }
386 if (alloc->getType()->getDimLOD() || alloc->getType()->getDimFaces()) {
387 ALOGE("User-allocated buffers must not have multiple faces or LODs");
388 return false;
389 }
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800390
391 // rows must be 16-byte aligned
392 // validate that here, otherwise fall back to not use the user-backed allocation
393 if (((alloc->getType()->getDimX() * alloc->getType()->getElement()->getSizeBytes()) % 16) != 0) {
394 ALOGV("User-backed allocation failed stride requirement, falling back to separate allocation");
395 drv->useUserProvidedPtr = false;
396
397 ptr = allocAlignedMemory(allocSize, forceZero);
398 if (!ptr) {
399 alloc->mHal.drv = NULL;
400 free(drv);
401 return false;
402 }
403
404 } else {
405 drv->useUserProvidedPtr = true;
406 ptr = (uint8_t*)alloc->mHal.state.userProvidedPtr;
407 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800408 } else {
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800409 ptr = allocAlignedMemory(allocSize, forceZero);
Jason Sams179e9a42011-11-23 15:02:15 -0800410 if (!ptr) {
You Kimed419f32012-12-17 03:42:57 +0900411 alloc->mHal.drv = NULL;
Jason Sams179e9a42011-11-23 15:02:15 -0800412 free(drv);
413 return false;
414 }
Jason Samseb4fe182011-05-26 16:33:01 -0700415 }
Jason Sams463bfce2012-08-21 13:54:42 -0700416 // Build the pointer tables
417 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), ptr);
418 if(allocSize != verifySize) {
419 rsAssert(!"Size mismatch");
Jason Sams807fdc42012-07-25 17:55:39 -0700420 }
Jason Samseb4fe182011-05-26 16:33:01 -0700421
Tim Murray0b575de2013-03-15 15:56:43 -0700422#ifndef RS_SERVER
Jason Samseb4fe182011-05-26 16:33:01 -0700423 drv->glTarget = GL_NONE;
424 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
425 if (alloc->mHal.state.hasFaces) {
426 drv->glTarget = GL_TEXTURE_CUBE_MAP;
427 } else {
428 drv->glTarget = GL_TEXTURE_2D;
429 }
430 } else {
431 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
432 drv->glTarget = GL_ARRAY_BUFFER;
433 }
434 }
Tim Murray0b575de2013-03-15 15:56:43 -0700435#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700436
Jason Sams93eacc72012-12-18 14:26:57 -0800437#ifndef RS_COMPATIBILITY_LIB
Jason Samsa614ae12011-05-26 17:05:51 -0700438 drv->glType = rsdTypeToGLType(alloc->mHal.state.type->getElement()->getComponent().getType());
439 drv->glFormat = rsdKindToGLFormat(alloc->mHal.state.type->getElement()->getComponent().getKind());
Jason Sams93eacc72012-12-18 14:26:57 -0800440#else
441 drv->glType = 0;
442 drv->glFormat = 0;
443#endif
Jason Samsa614ae12011-05-26 17:05:51 -0700444
Jason Samseb4fe182011-05-26 16:33:01 -0700445 if (alloc->mHal.state.usageFlags & ~RS_ALLOCATION_USAGE_SCRIPT) {
446 drv->uploadDeferred = true;
447 }
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700448
Jason Samsb3220332012-04-02 14:41:54 -0700449
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700450 drv->readBackFBO = NULL;
451
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800452 // fill out the initial state of the buffer if we couldn't use the user-provided ptr and USAGE_SHARED was accepted
453 if ((alloc->mHal.state.userProvidedPtr != 0) && (drv->useUserProvidedPtr == false)) {
454 rsdAllocationData2D(rsc, alloc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X, alloc->getType()->getDimX(), alloc->getType()->getDimY(), alloc->mHal.state.userProvidedPtr, allocSize, 0);
455 }
456
Jason Samseb4fe182011-05-26 16:33:01 -0700457 return true;
458}
459
460void rsdAllocationDestroy(const Context *rsc, Allocation *alloc) {
461 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
462
Jason Sams93eacc72012-12-18 14:26:57 -0800463#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700464 if (drv->bufferID) {
465 // Causes a SW crash....
Steve Block65982012011-10-20 11:56:00 +0100466 //ALOGV(" mBufferID %i", mBufferID);
Jason Samseb4fe182011-05-26 16:33:01 -0700467 //glDeleteBuffers(1, &mBufferID);
468 //mBufferID = 0;
469 }
470 if (drv->textureID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700471 RSD_CALL_GL(glDeleteTextures, 1, &drv->textureID);
Jason Samseb4fe182011-05-26 16:33:01 -0700472 drv->textureID = 0;
473 }
474 if (drv->renderTargetID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700475 RSD_CALL_GL(glDeleteRenderbuffers, 1, &drv->renderTargetID);
Jason Samseb4fe182011-05-26 16:33:01 -0700476 drv->renderTargetID = 0;
477 }
Jason Sams93eacc72012-12-18 14:26:57 -0800478#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700479
Jason Sams709a0972012-11-15 18:18:04 -0800480 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Tim Murrayaafa7a82013-05-09 13:22:53 -0700481 // don't free user-allocated ptrs or IO_OUTPUT buffers
482 if (!(drv->useUserProvidedPtr) &&
Sakshi Agrawalc88bcef2013-05-13 16:46:09 -0700483 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) &&
Tim Murrayaafa7a82013-05-09 13:22:53 -0700484 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT)) {
Sakshi Agrawalc88bcef2013-05-13 16:46:09 -0700485 free(alloc->mHal.drvState.lod[0].mallocPtr);
Tim Murray2e1a94d2012-11-29 13:12:25 -0800486 }
Jason Sams709a0972012-11-15 18:18:04 -0800487 alloc->mHal.drvState.lod[0].mallocPtr = NULL;
Jason Samseb4fe182011-05-26 16:33:01 -0700488 }
Jason Sams93eacc72012-12-18 14:26:57 -0800489
490#ifndef RS_COMPATIBILITY_LIB
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700491 if (drv->readBackFBO != NULL) {
492 delete drv->readBackFBO;
493 drv->readBackFBO = NULL;
494 }
Jason Sams10c9dd72013-02-01 10:53:42 -0800495
496 if ((alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT) &&
497 (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
498
499 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800500 ANativeWindow *nw = drv->wndSurface;
501 if (nw) {
502 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
503 mapper.unlock(drv->wndBuffer->handle);
504 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
505 }
Jason Sams10c9dd72013-02-01 10:53:42 -0800506 }
Jason Sams93eacc72012-12-18 14:26:57 -0800507#endif
508
Jason Samseb4fe182011-05-26 16:33:01 -0700509 free(drv);
510 alloc->mHal.drv = NULL;
511}
512
513void rsdAllocationResize(const Context *rsc, const Allocation *alloc,
514 const Type *newType, bool zeroNew) {
Jason Samsa572aca2013-01-09 11:52:26 -0800515 const uint32_t oldDimX = alloc->mHal.drvState.lod[0].dimX;
516 const uint32_t dimX = newType->getDimX();
517
Tim Murray9e2bda52012-12-18 12:05:46 -0800518 // can't resize Allocations with user-allocated buffers
519 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SHARED) {
520 ALOGE("Resize cannot be called on a USAGE_SHARED allocation");
521 return;
522 }
Jason Sams709a0972012-11-15 18:18:04 -0800523 void * oldPtr = alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams463bfce2012-08-21 13:54:42 -0700524 // Calculate the object size
525 size_t s = AllocationBuildPointerTable(rsc, alloc, newType, NULL);
526 uint8_t *ptr = (uint8_t *)realloc(oldPtr, s);
527 // Build the relative pointer tables.
528 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, newType, ptr);
529 if(s != verifySize) {
530 rsAssert(!"Size mismatch");
531 }
Jason Samseb4fe182011-05-26 16:33:01 -0700532
Jason Samseb4fe182011-05-26 16:33:01 -0700533
534 if (dimX > oldDimX) {
Tim Murray099bc262013-03-20 16:54:03 -0700535 size_t stride = alloc->mHal.state.elementSizeBytes;
Jason Sams709a0972012-11-15 18:18:04 -0800536 memset(((uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr) + stride * oldDimX,
Jason Sams2275e9c2012-04-16 17:01:26 -0700537 0, stride * (dimX - oldDimX));
Jason Samseb4fe182011-05-26 16:33:01 -0700538 }
539}
540
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700541static void rsdAllocationSyncFromFBO(const Context *rsc, const Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800542#ifndef RS_COMPATIBILITY_LIB
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700543 if (!alloc->getIsScript()) {
544 return; // nothing to sync
545 }
546
547 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
548 RsdFrameBufferObj *lastFbo = dc->gl.currentFrameBuffer;
549
550 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
551 if (!drv->textureID && !drv->renderTargetID) {
552 return; // nothing was rendered here yet, so nothing to sync
553 }
554 if (drv->readBackFBO == NULL) {
555 drv->readBackFBO = new RsdFrameBufferObj();
556 drv->readBackFBO->setColorTarget(drv, 0);
557 drv->readBackFBO->setDimensions(alloc->getType()->getDimX(),
558 alloc->getType()->getDimY());
559 }
560
561 // Bind the framebuffer object so we can read back from it
562 drv->readBackFBO->setActive(rsc);
563
564 // Do the readback
Jason Sams709a0972012-11-15 18:18:04 -0800565 RSD_CALL_GL(glReadPixels, 0, 0, alloc->mHal.drvState.lod[0].dimX,
566 alloc->mHal.drvState.lod[0].dimY,
567 drv->glFormat, drv->glType, alloc->mHal.drvState.lod[0].mallocPtr);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700568
569 // Revert framebuffer to its original
570 lastFbo->setActive(rsc);
Jason Sams93eacc72012-12-18 14:26:57 -0800571#endif
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700572}
Jason Samseb4fe182011-05-26 16:33:01 -0700573
574
575void rsdAllocationSyncAll(const Context *rsc, const Allocation *alloc,
576 RsAllocationUsageType src) {
577 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
578
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700579 if (src == RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
580 if(!alloc->getIsRenderTarget()) {
581 rsc->setError(RS_ERROR_FATAL_DRIVER,
582 "Attempting to sync allocation from render target, "
583 "for non-render target allocation");
584 } else if (alloc->getType()->getElement()->getKind() != RS_KIND_PIXEL_RGBA) {
585 rsc->setError(RS_ERROR_FATAL_DRIVER, "Cannot only sync from RGBA"
586 "render target");
587 } else {
588 rsdAllocationSyncFromFBO(rsc, alloc);
589 }
Jason Samseb4fe182011-05-26 16:33:01 -0700590 return;
591 }
592
593 rsAssert(src == RS_ALLOCATION_USAGE_SCRIPT);
594
595 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
596 UploadToTexture(rsc, alloc);
597 } else {
Jason Samsb3220332012-04-02 14:41:54 -0700598 if ((alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) &&
Jason Sams0dc66932012-04-10 17:05:49 -0700599 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT)) {
Jason Samseb4fe182011-05-26 16:33:01 -0700600 AllocateRenderTarget(rsc, alloc);
601 }
602 }
603 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
604 UploadToBufferObject(rsc, alloc);
605 }
606
Tim Murrayba24d082013-04-09 17:31:11 -0700607 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SHARED) {
608 // NOP in CPU driver for now
609 }
610
Jason Samseb4fe182011-05-26 16:33:01 -0700611 drv->uploadDeferred = false;
612}
613
614void rsdAllocationMarkDirty(const Context *rsc, const Allocation *alloc) {
615 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
616 drv->uploadDeferred = true;
617}
618
Jason Sams4961cce2013-04-11 16:11:46 -0700619#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800620static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
621 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
622
Jamie Genniscd919a12012-06-13 16:34:11 -0700623 int32_t r = native_window_dequeue_buffer_and_wait(nw, &drv->wndBuffer);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800624 if (r) {
625 rsc->setError(RS_ERROR_DRIVER, "Error getting next IO output buffer.");
626 return false;
627 }
628
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800629 // Must lock the whole surface
630 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
631 Rect bounds(drv->wndBuffer->width, drv->wndBuffer->height);
632
633 void *dst = NULL;
634 mapper.lock(drv->wndBuffer->handle,
635 GRALLOC_USAGE_SW_READ_NEVER | GRALLOC_USAGE_SW_WRITE_OFTEN,
636 bounds, &dst);
Jason Sams709a0972012-11-15 18:18:04 -0800637 alloc->mHal.drvState.lod[0].mallocPtr = dst;
638 alloc->mHal.drvState.lod[0].stride = drv->wndBuffer->stride * alloc->mHal.state.elementSizeBytes;
Stephen Hines94999c32013-02-05 16:58:22 -0800639 rsAssert((alloc->mHal.drvState.lod[0].stride & 0xf) == 0);
Jason Samsb3220332012-04-02 14:41:54 -0700640
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800641 return true;
642}
Jason Sams93eacc72012-12-18 14:26:57 -0800643#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800644
Jason Sams733396b2013-02-22 12:46:18 -0800645void rsdAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
Jason Sams93eacc72012-12-18 14:26:57 -0800646#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800647 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800648 ANativeWindow *old = drv->wndSurface;
649
650 if (nw) {
651 nw->incStrong(NULL);
652 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800653
Jason Samsb3220332012-04-02 14:41:54 -0700654 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
655 //TODO finish support for render target + script
656 drv->wnd = nw;
657 return;
658 }
659
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800660 // Cleanup old surface if there is one.
Tim Murray3a25fdd2013-02-22 17:56:56 -0800661 if (drv->wndSurface) {
662 ANativeWindow *old = drv->wndSurface;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800663 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
664 mapper.unlock(drv->wndBuffer->handle);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800665 old->cancelBuffer(old, drv->wndBuffer, -1);
666 drv->wndSurface = NULL;
667 old->decStrong(NULL);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800668 }
669
670 if (nw != NULL) {
671 int32_t r;
Jason Samsb3220332012-04-02 14:41:54 -0700672 uint32_t flags = 0;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800673
Jason Samsb3220332012-04-02 14:41:54 -0700674 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
675 flags |= GRALLOC_USAGE_SW_READ_RARELY | GRALLOC_USAGE_SW_WRITE_OFTEN;
676 }
677 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
678 flags |= GRALLOC_USAGE_HW_RENDER;
679 }
680
681 r = native_window_set_usage(nw, flags);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800682 if (r) {
683 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer usage.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800684 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800685 }
686
Jason Samsa572aca2013-01-09 11:52:26 -0800687 r = native_window_set_buffers_dimensions(nw, alloc->mHal.drvState.lod[0].dimX,
688 alloc->mHal.drvState.lod[0].dimY);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800689 if (r) {
690 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer dimensions.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800691 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800692 }
693
Jason Sams733396b2013-02-22 12:46:18 -0800694 int format = 0;
695 const Element *e = alloc->mHal.state.type->getElement();
Stephen Hines8b9b3aa2013-08-02 15:51:36 -0700696 rsAssert(e->getType() == RS_TYPE_UNSIGNED_8);
697 rsAssert(e->getVectorSize() == 4);
698 rsAssert(e->getKind() == RS_KIND_PIXEL_RGBA);
699 format = PIXEL_FORMAT_RGBA_8888;
Jason Sams733396b2013-02-22 12:46:18 -0800700
701 r = native_window_set_buffers_format(nw, format);
702 if (r) {
703 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer format.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800704 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800705 }
706
707 IoGetBuffer(rsc, alloc, nw);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800708 drv->wndSurface = nw;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800709 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800710
711 return;
712
713 error:
714
715 if (nw) {
716 nw->decStrong(NULL);
717 }
718
719
Jason Sams93eacc72012-12-18 14:26:57 -0800720#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800721}
722
723void rsdAllocationIoSend(const Context *rsc, Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800724#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800725 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800726 ANativeWindow *nw = drv->wndSurface;
Jason Samsb3220332012-04-02 14:41:54 -0700727 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
728 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
729 RSD_CALL_GL(eglSwapBuffers, dc->gl.egl.display, dc->gl.egl.surface);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800730 return;
731 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800732 if (nw) {
733 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
734 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
735 mapper.unlock(drv->wndBuffer->handle);
736 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
737 if (r) {
738 rsc->setError(RS_ERROR_DRIVER, "Error sending IO output buffer.");
739 return;
740 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800741
Tim Murray3a25fdd2013-02-22 17:56:56 -0800742 IoGetBuffer(rsc, alloc, nw);
Jason Samsb3220332012-04-02 14:41:54 -0700743 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800744 } else {
745 rsc->setError(RS_ERROR_DRIVER, "Sent IO buffer with no attached surface.");
746 return;
Jason Samsb3220332012-04-02 14:41:54 -0700747 }
Jason Sams93eacc72012-12-18 14:26:57 -0800748#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800749}
750
751void rsdAllocationIoReceive(const Context *rsc, Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800752#ifndef RS_COMPATIBILITY_LIB
Jason Sams3522f402012-03-23 11:47:26 -0700753 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Jason Samsddceab92013-08-07 13:02:32 -0700754 if (!(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
Tim Murray3a25fdd2013-02-22 17:56:56 -0800755 drv->surfaceTexture->updateTexImage();
Jason Sams733396b2013-02-22 12:46:18 -0800756 }
Jason Sams93eacc72012-12-18 14:26:57 -0800757#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800758}
759
760
Jason Samseb4fe182011-05-26 16:33:01 -0700761void rsdAllocationData1D(const Context *rsc, const Allocation *alloc,
Tim Murray099bc262013-03-20 16:54:03 -0700762 uint32_t xoff, uint32_t lod, size_t count,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800763 const void *data, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -0700764 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
765
Tim Murray099bc262013-03-20 16:54:03 -0700766 const size_t eSize = alloc->mHal.state.type->getElementSizeBytes();
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700767 uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Tim Murray099bc262013-03-20 16:54:03 -0700768 size_t size = count * eSize;
Jason Samseb4fe182011-05-26 16:33:01 -0700769
Stephen Hines20c535f2012-12-06 19:04:38 -0800770 if (ptr != data) {
771 // Skip the copy if we are the same allocation. This can arise from
772 // our Bitmap optimization, where we share the same storage.
773 if (alloc->mHal.state.hasReferences) {
774 alloc->incRefs(data, count);
775 alloc->decRefs(ptr, count);
776 }
777 memcpy(ptr, data, size);
Jason Samseb4fe182011-05-26 16:33:01 -0700778 }
Jason Samseb4fe182011-05-26 16:33:01 -0700779 drv->uploadDeferred = true;
780}
781
782void rsdAllocationData2D(const Context *rsc, const Allocation *alloc,
783 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800784 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
Jason Samseb4fe182011-05-26 16:33:01 -0700785 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
786
Tim Murray099bc262013-03-20 16:54:03 -0700787 size_t eSize = alloc->mHal.state.elementSizeBytes;
788 size_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800789 if (!stride) {
790 stride = lineSize;
791 }
Jason Samseb4fe182011-05-26 16:33:01 -0700792
Jason Sams709a0972012-11-15 18:18:04 -0800793 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Samseb4fe182011-05-26 16:33:01 -0700794 const uint8_t *src = static_cast<const uint8_t *>(data);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700795 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Stephen Hines20c535f2012-12-06 19:04:38 -0800796 if (dst == src) {
797 // Skip the copy if we are the same allocation. This can arise from
798 // our Bitmap optimization, where we share the same storage.
799 drv->uploadDeferred = true;
800 return;
801 }
Jason Samseb4fe182011-05-26 16:33:01 -0700802
803 for (uint32_t line=yoff; line < (yoff+h); line++) {
804 if (alloc->mHal.state.hasReferences) {
805 alloc->incRefs(src, w);
806 alloc->decRefs(dst, w);
807 }
808 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800809 src += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800810 dst += alloc->mHal.drvState.lod[lod].stride;
Jason Samseb4fe182011-05-26 16:33:01 -0700811 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800812 if (alloc->mHal.state.yuv) {
813 int lod = 1;
814 while (alloc->mHal.drvState.lod[lod].mallocPtr) {
Tim Murray099bc262013-03-20 16:54:03 -0700815 size_t lineSize = alloc->mHal.drvState.lod[lod].dimX;
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700816 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800817
818 for (uint32_t line=(yoff >> 1); line < ((yoff+h)>>1); line++) {
819 memcpy(dst, src, lineSize);
820 src += lineSize;
821 dst += alloc->mHal.drvState.lod[lod].stride;
822 }
823 lod++;
824 }
825
826 }
Jason Samseb4fe182011-05-26 16:33:01 -0700827 drv->uploadDeferred = true;
828 } else {
Jason Sams2382aba2011-09-13 15:41:01 -0700829 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h);
Jason Samseb4fe182011-05-26 16:33:01 -0700830 }
831}
832
833void rsdAllocationData3D(const Context *rsc, const Allocation *alloc,
834 uint32_t xoff, uint32_t yoff, uint32_t zoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700835 uint32_t lod,
836 uint32_t w, uint32_t h, uint32_t d, const void *data,
837 size_t sizeBytes, size_t stride) {
838 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Jason Samseb4fe182011-05-26 16:33:01 -0700839
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700840 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
841 uint32_t lineSize = eSize * w;
842 if (!stride) {
843 stride = lineSize;
844 }
845
846 if (alloc->mHal.drvState.lod[0].mallocPtr) {
847 const uint8_t *src = static_cast<const uint8_t *>(data);
848 for (uint32_t z = zoff; z < d; z++) {
849 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, z, lod,
850 RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
851 if (dst == src) {
852 // Skip the copy if we are the same allocation. This can arise from
853 // our Bitmap optimization, where we share the same storage.
854 drv->uploadDeferred = true;
855 return;
856 }
857
858 for (uint32_t line=yoff; line < (yoff+h); line++) {
859 if (alloc->mHal.state.hasReferences) {
860 alloc->incRefs(src, w);
861 alloc->decRefs(dst, w);
862 }
863 memcpy(dst, src, lineSize);
864 src += stride;
865 dst += alloc->mHal.drvState.lod[lod].stride;
866 }
867 }
868 drv->uploadDeferred = true;
869 }
Jason Samseb4fe182011-05-26 16:33:01 -0700870}
871
Jason Sams807fdc42012-07-25 17:55:39 -0700872void rsdAllocationRead1D(const Context *rsc, const Allocation *alloc,
Tim Murray099bc262013-03-20 16:54:03 -0700873 uint32_t xoff, uint32_t lod, size_t count,
Jason Sams807fdc42012-07-25 17:55:39 -0700874 void *data, size_t sizeBytes) {
Tim Murray099bc262013-03-20 16:54:03 -0700875 const size_t eSize = alloc->mHal.state.type->getElementSizeBytes();
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700876 const uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Stephen Hines20c535f2012-12-06 19:04:38 -0800877 if (data != ptr) {
878 // Skip the copy if we are the same allocation. This can arise from
879 // our Bitmap optimization, where we share the same storage.
880 memcpy(data, ptr, count * eSize);
881 }
Jason Sams807fdc42012-07-25 17:55:39 -0700882}
883
884void rsdAllocationRead2D(const Context *rsc, const Allocation *alloc,
Tim Murray358747a2012-11-26 13:52:04 -0800885 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
886 uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) {
Tim Murray099bc262013-03-20 16:54:03 -0700887 size_t eSize = alloc->mHal.state.elementSizeBytes;
888 size_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800889 if (!stride) {
890 stride = lineSize;
891 }
Jason Sams807fdc42012-07-25 17:55:39 -0700892
Jason Sams709a0972012-11-15 18:18:04 -0800893 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams807fdc42012-07-25 17:55:39 -0700894 uint8_t *dst = static_cast<uint8_t *>(data);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700895 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Stephen Hines20c535f2012-12-06 19:04:38 -0800896 if (dst == src) {
897 // Skip the copy if we are the same allocation. This can arise from
898 // our Bitmap optimization, where we share the same storage.
899 return;
900 }
Jason Sams807fdc42012-07-25 17:55:39 -0700901
902 for (uint32_t line=yoff; line < (yoff+h); line++) {
903 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800904 dst += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800905 src += alloc->mHal.drvState.lod[lod].stride;
Jason Sams807fdc42012-07-25 17:55:39 -0700906 }
907 } else {
908 ALOGE("Add code to readback from non-script memory");
909 }
910}
911
Tim Murray358747a2012-11-26 13:52:04 -0800912
Jason Sams807fdc42012-07-25 17:55:39 -0700913void rsdAllocationRead3D(const Context *rsc, const Allocation *alloc,
914 uint32_t xoff, uint32_t yoff, uint32_t zoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700915 uint32_t lod,
916 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) {
917 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
918 uint32_t lineSize = eSize * w;
919 if (!stride) {
920 stride = lineSize;
921 }
Jason Sams807fdc42012-07-25 17:55:39 -0700922
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700923 if (alloc->mHal.drvState.lod[0].mallocPtr) {
924 uint8_t *dst = static_cast<uint8_t *>(data);
925 for (uint32_t z = zoff; z < d; z++) {
926 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, z, lod,
927 RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
928 if (dst == src) {
929 // Skip the copy if we are the same allocation. This can arise from
930 // our Bitmap optimization, where we share the same storage.
931 return;
932 }
933
934 for (uint32_t line=yoff; line < (yoff+h); line++) {
935 memcpy(dst, src, lineSize);
936 dst += stride;
937 src += alloc->mHal.drvState.lod[lod].stride;
938 }
939 }
940 }
Jason Sams807fdc42012-07-25 17:55:39 -0700941}
942
943void * rsdAllocationLock1D(const android::renderscript::Context *rsc,
944 const android::renderscript::Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -0800945 return alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams807fdc42012-07-25 17:55:39 -0700946}
947
948void rsdAllocationUnlock1D(const android::renderscript::Context *rsc,
949 const android::renderscript::Allocation *alloc) {
950
951}
952
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700953void rsdAllocationData1D_alloc(const android::renderscript::Context *rsc,
954 const android::renderscript::Allocation *dstAlloc,
Tim Murray099bc262013-03-20 16:54:03 -0700955 uint32_t dstXoff, uint32_t dstLod, size_t count,
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700956 const android::renderscript::Allocation *srcAlloc,
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700957 uint32_t srcXoff, uint32_t srcLod) {
958}
959
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700960
961void rsdAllocationData2D_alloc_script(const android::renderscript::Context *rsc,
962 const android::renderscript::Allocation *dstAlloc,
963 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
964 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
965 const android::renderscript::Allocation *srcAlloc,
966 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
967 RsAllocationCubemapFace srcFace) {
Tim Murray099bc262013-03-20 16:54:03 -0700968 size_t elementSize = dstAlloc->getType()->getElementSizeBytes();
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700969 for (uint32_t i = 0; i < h; i ++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700970 uint8_t *dstPtr = GetOffsetPtr(dstAlloc, dstXoff, dstYoff + i, 0, dstLod, dstFace);
971 uint8_t *srcPtr = GetOffsetPtr(srcAlloc, srcXoff, srcYoff + i, 0, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700972 memcpy(dstPtr, srcPtr, w * elementSize);
973
Steve Blockaf12ac62012-01-06 19:20:56 +0000974 //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 -0700975 // dstXoff, dstYoff, dstLod, dstFace, w, h, srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700976 }
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700977}
978
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700979void rsdAllocationData3D_alloc_script(const android::renderscript::Context *rsc,
980 const android::renderscript::Allocation *dstAlloc,
981 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod,
982 uint32_t w, uint32_t h, uint32_t d,
983 const android::renderscript::Allocation *srcAlloc,
984 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) {
985 uint32_t elementSize = dstAlloc->getType()->getElementSizeBytes();
986 for (uint32_t j = 0; j < d; j++) {
987 for (uint32_t i = 0; i < h; i ++) {
988 uint8_t *dstPtr = GetOffsetPtr(dstAlloc, dstXoff, dstYoff + i, dstZoff + j,
989 dstLod, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
990 uint8_t *srcPtr = GetOffsetPtr(srcAlloc, srcXoff, srcYoff + i, srcZoff + j,
991 srcLod, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
992 memcpy(dstPtr, srcPtr, w * elementSize);
993
994 //ALOGE("COPIED dstXoff(%u), dstYoff(%u), dstLod(%u), dstFace(%u), w(%u), h(%u), srcXoff(%u), srcYoff(%u), srcLod(%u), srcFace(%u)",
995 // dstXoff, dstYoff, dstLod, dstFace, w, h, srcXoff, srcYoff, srcLod, srcFace);
996 }
997 }
998}
999
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001000void rsdAllocationData2D_alloc(const android::renderscript::Context *rsc,
1001 const android::renderscript::Allocation *dstAlloc,
1002 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
1003 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
1004 const android::renderscript::Allocation *srcAlloc,
1005 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
1006 RsAllocationCubemapFace srcFace) {
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001007 if (!dstAlloc->getIsScript() && !srcAlloc->getIsScript()) {
1008 rsc->setError(RS_ERROR_FATAL_DRIVER, "Non-script allocation copies not "
1009 "yet implemented.");
1010 return;
1011 }
1012 rsdAllocationData2D_alloc_script(rsc, dstAlloc, dstXoff, dstYoff,
1013 dstLod, dstFace, w, h, srcAlloc,
1014 srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001015}
1016
1017void rsdAllocationData3D_alloc(const android::renderscript::Context *rsc,
1018 const android::renderscript::Allocation *dstAlloc,
1019 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001020 uint32_t dstLod,
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001021 uint32_t w, uint32_t h, uint32_t d,
1022 const android::renderscript::Allocation *srcAlloc,
1023 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001024 uint32_t srcLod) {
1025 if (!dstAlloc->getIsScript() && !srcAlloc->getIsScript()) {
1026 rsc->setError(RS_ERROR_FATAL_DRIVER, "Non-script allocation copies not "
1027 "yet implemented.");
1028 return;
1029 }
1030 rsdAllocationData3D_alloc_script(rsc, dstAlloc, dstXoff, dstYoff, dstZoff,
1031 dstLod, w, h, d, srcAlloc,
1032 srcXoff, srcYoff, srcZoff, srcLod);
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001033}
1034
Jason Samseb4fe182011-05-26 16:33:01 -07001035void rsdAllocationElementData1D(const Context *rsc, const Allocation *alloc,
1036 uint32_t x,
Tim Murray099bc262013-03-20 16:54:03 -07001037 const void *data, uint32_t cIdx, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -07001038 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
1039
Tim Murray099bc262013-03-20 16:54:03 -07001040 size_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001041 uint8_t * ptr = GetOffsetPtr(alloc, x, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -07001042
1043 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
1044 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
1045
1046 if (alloc->mHal.state.hasReferences) {
1047 e->incRefs(data);
1048 e->decRefs(ptr);
1049 }
1050
1051 memcpy(ptr, data, sizeBytes);
1052 drv->uploadDeferred = true;
1053}
1054
1055void rsdAllocationElementData2D(const Context *rsc, const Allocation *alloc,
1056 uint32_t x, uint32_t y,
Tim Murray099bc262013-03-20 16:54:03 -07001057 const void *data, uint32_t cIdx, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -07001058 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
1059
Tim Murray099bc262013-03-20 16:54:03 -07001060 size_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001061 uint8_t * ptr = GetOffsetPtr(alloc, x, y, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -07001062
1063 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
1064 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
1065
1066 if (alloc->mHal.state.hasReferences) {
1067 e->incRefs(data);
1068 e->decRefs(ptr);
1069 }
1070
1071 memcpy(ptr, data, sizeBytes);
1072 drv->uploadDeferred = true;
1073}
1074
Jason Sams61a4bb72012-07-25 19:33:43 -07001075static void mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001076 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1077 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001078
1079 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001080 uint16_t *oPtr = (uint16_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1081 const uint16_t *i1 = (uint16_t *)GetOffsetPtr(alloc, 0, 0, y*2, lod, face);
1082 const uint16_t *i2 = (uint16_t *)GetOffsetPtr(alloc, 0, 0, y*2+1, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001083
1084 for (uint32_t x=0; x < w; x++) {
1085 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
1086 oPtr ++;
1087 i1 += 2;
1088 i2 += 2;
1089 }
1090 }
1091}
1092
1093static void mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001094 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1095 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001096
1097 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001098 uint32_t *oPtr = (uint32_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1099 const uint32_t *i1 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2, 0, lod, face);
1100 const uint32_t *i2 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2+1, 0, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001101
1102 for (uint32_t x=0; x < w; x++) {
1103 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
1104 oPtr ++;
1105 i1 += 2;
1106 i2 += 2;
1107 }
1108 }
1109}
1110
1111static void mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001112 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1113 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001114
1115 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001116 uint8_t *oPtr = GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1117 const uint8_t *i1 = GetOffsetPtr(alloc, 0, y*2, 0, lod, face);
1118 const uint8_t *i2 = GetOffsetPtr(alloc, 0, y*2+1, 0, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001119
1120 for (uint32_t x=0; x < w; x++) {
1121 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f);
1122 oPtr ++;
1123 i1 += 2;
1124 i2 += 2;
1125 }
1126 }
1127}
1128
1129void rsdAllocationGenerateMipmaps(const Context *rsc, const Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -08001130 if(!alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams61a4bb72012-07-25 19:33:43 -07001131 return;
1132 }
1133 uint32_t numFaces = alloc->getType()->getDimFaces() ? 6 : 1;
1134 for (uint32_t face = 0; face < numFaces; face ++) {
1135 for (uint32_t lod=0; lod < (alloc->getType()->getLODCount() -1); lod++) {
1136 switch (alloc->getType()->getElement()->getSizeBits()) {
1137 case 32:
1138 mip8888(alloc, lod, (RsAllocationCubemapFace)face);
1139 break;
1140 case 16:
1141 mip565(alloc, lod, (RsAllocationCubemapFace)face);
1142 break;
1143 case 8:
1144 mip8(alloc, lod, (RsAllocationCubemapFace)face);
1145 break;
1146 }
1147 }
1148 }
1149}
Jason Samsddceab92013-08-07 13:02:32 -07001150
1151uint32_t rsdAllocationGrallocBits(const android::renderscript::Context *rsc,
1152 android::renderscript::Allocation *alloc)
1153{
1154 return 0;
1155}
1156