blob: bbe0d7a3baf26b76501f9dc1b2f24eac7bad357e [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);
Jason Sams61656a72013-09-03 16:21:18 -0700246 RSD_CALL_GL(glBufferData, drv->glTarget,
247 alloc->mHal.state.type->getPackedSizeBytes(),
248 alloc->mHal.drvState.lod[0].mallocPtr, GL_DYNAMIC_DRAW);
Jason Sams2382aba2011-09-13 15:41:01 -0700249 RSD_CALL_GL(glBindBuffer, drv->glTarget, 0);
Jason Samseb4fe182011-05-26 16:33:01 -0700250 rsdGLCheckError(rsc, "UploadToBufferObject");
Jason Sams93eacc72012-12-18 14:26:57 -0800251#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700252}
253
Tim Murray0b575de2013-03-15 15:56:43 -0700254
Jason Sams9d8e5af2013-02-28 14:00:08 -0800255static size_t DeriveYUVLayout(int yuv, Allocation::Hal::DrvState *state) {
Jason Sams733396b2013-02-22 12:46:18 -0800256 // YUV only supports basic 2d
257 // so we can stash the plane pointers in the mipmap levels.
Jason Sams9d8e5af2013-02-28 14:00:08 -0800258 size_t uvSize = 0;
Jason Sams61656a72013-09-03 16:21:18 -0700259 state->lod[1].dimX = state->lod[0].dimX / 2;
260 state->lod[1].dimY = state->lod[0].dimY / 2;
261 state->lod[2].dimX = state->lod[0].dimX / 2;
262 state->lod[2].dimY = state->lod[0].dimY / 2;
263 state->yuv.shift = 1;
264 state->yuv.step = 1;
265 state->lodCount = 3;
266
Tim Murray0b575de2013-03-15 15:56:43 -0700267#ifndef RS_SERVER
Jason Sams733396b2013-02-22 12:46:18 -0800268 switch(yuv) {
269 case HAL_PIXEL_FORMAT_YV12:
Jason Sams4961cce2013-04-11 16:11:46 -0700270 state->lod[2].stride = rsRound(state->lod[0].stride >> 1, 16);
271 state->lod[2].mallocPtr = ((uint8_t *)state->lod[0].mallocPtr) +
Jason Sams733396b2013-02-22 12:46:18 -0800272 (state->lod[0].stride * state->lod[0].dimY);
Jason Sams9d8e5af2013-02-28 14:00:08 -0800273 uvSize += state->lod[2].stride * state->lod[2].dimY;
Jason Sams733396b2013-02-22 12:46:18 -0800274
Jason Sams4961cce2013-04-11 16:11:46 -0700275 state->lod[1].stride = state->lod[2].stride;
276 state->lod[1].mallocPtr = ((uint8_t *)state->lod[2].mallocPtr) +
277 (state->lod[2].stride * state->lod[2].dimY);
278 uvSize += state->lod[1].stride * state->lod[2].dimY;
Jason Sams733396b2013-02-22 12:46:18 -0800279 break;
280 case HAL_PIXEL_FORMAT_YCrCb_420_SP: // NV21
Jason Sams61656a72013-09-03 16:21:18 -0700281 //state->lod[1].dimX = state->lod[0].dimX;
Jason Sams733396b2013-02-22 12:46:18 -0800282 state->lod[1].stride = state->lod[0].stride;
Jason Sams61656a72013-09-03 16:21:18 -0700283 state->lod[2].stride = state->lod[0].stride;
284 state->lod[2].mallocPtr = ((uint8_t *)state->lod[0].mallocPtr) +
Jason Sams733396b2013-02-22 12:46:18 -0800285 (state->lod[0].stride * state->lod[0].dimY);
Jason Sams61656a72013-09-03 16:21:18 -0700286 state->lod[1].mallocPtr = ((uint8_t *)state->lod[2].mallocPtr) + 1;
Jason Sams9d8e5af2013-02-28 14:00:08 -0800287 uvSize += state->lod[1].stride * state->lod[1].dimY;
Jason Sams61656a72013-09-03 16:21:18 -0700288 state->yuv.step = 2;
Jason Sams733396b2013-02-22 12:46:18 -0800289 break;
Jason Sams61656a72013-09-03 16:21:18 -0700290#ifndef RS_COMPATIBILITY_LIB
291 case HAL_PIXEL_FORMAT_YCbCr_420_888:
292 // This will be filled in by ioReceive()
293 break;
294#endif
Jason Sams733396b2013-02-22 12:46:18 -0800295 default:
296 rsAssert(0);
297 }
Tim Murray0b575de2013-03-15 15:56:43 -0700298#endif
Jason Sams9d8e5af2013-02-28 14:00:08 -0800299 return uvSize;
Jason Sams733396b2013-02-22 12:46:18 -0800300}
301
302
Jason Sams463bfce2012-08-21 13:54:42 -0700303static size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc,
304 const Type *type, uint8_t *ptr) {
Jason Sams709a0972012-11-15 18:18:04 -0800305 alloc->mHal.drvState.lod[0].dimX = type->getDimX();
306 alloc->mHal.drvState.lod[0].dimY = type->getDimY();
Jason Samsf2b611e2012-12-27 19:05:22 -0800307 alloc->mHal.drvState.lod[0].dimZ = type->getDimZ();
Jason Sams709a0972012-11-15 18:18:04 -0800308 alloc->mHal.drvState.lod[0].mallocPtr = 0;
Stephen Hines94999c32013-02-05 16:58:22 -0800309 // Stride needs to be 16-byte aligned too!
310 size_t stride = alloc->mHal.drvState.lod[0].dimX * type->getElementSizeBytes();
311 alloc->mHal.drvState.lod[0].stride = rsRound(stride, 16);
Jason Sams709a0972012-11-15 18:18:04 -0800312 alloc->mHal.drvState.lodCount = type->getLODCount();
313 alloc->mHal.drvState.faceCount = type->getDimFaces();
Jason Sams807fdc42012-07-25 17:55:39 -0700314
315 size_t offsets[Allocation::MAX_LOD];
316 memset(offsets, 0, sizeof(offsets));
317
Jason Sams709a0972012-11-15 18:18:04 -0800318 size_t o = alloc->mHal.drvState.lod[0].stride * rsMax(alloc->mHal.drvState.lod[0].dimY, 1u) *
319 rsMax(alloc->mHal.drvState.lod[0].dimZ, 1u);
320 if(alloc->mHal.drvState.lodCount > 1) {
321 uint32_t tx = alloc->mHal.drvState.lod[0].dimX;
322 uint32_t ty = alloc->mHal.drvState.lod[0].dimY;
323 uint32_t tz = alloc->mHal.drvState.lod[0].dimZ;
324 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
325 alloc->mHal.drvState.lod[lod].dimX = tx;
326 alloc->mHal.drvState.lod[lod].dimY = ty;
327 alloc->mHal.drvState.lod[lod].dimZ = tz;
Stephen Hines94999c32013-02-05 16:58:22 -0800328 alloc->mHal.drvState.lod[lod].stride =
329 rsRound(tx * type->getElementSizeBytes(), 16);
Jason Sams807fdc42012-07-25 17:55:39 -0700330 offsets[lod] = o;
Jason Sams709a0972012-11-15 18:18:04 -0800331 o += alloc->mHal.drvState.lod[lod].stride * rsMax(ty, 1u) * rsMax(tz, 1u);
Jason Sams807fdc42012-07-25 17:55:39 -0700332 if (tx > 1) tx >>= 1;
333 if (ty > 1) ty >>= 1;
334 if (tz > 1) tz >>= 1;
335 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800336 } else if (alloc->mHal.state.yuv) {
Jason Sams9d8e5af2013-02-28 14:00:08 -0800337 o += DeriveYUVLayout(alloc->mHal.state.yuv, &alloc->mHal.drvState);
Jason Sams733396b2013-02-22 12:46:18 -0800338
339 for (uint32_t ct = 1; ct < alloc->mHal.drvState.lodCount; ct++) {
340 offsets[ct] = (size_t)alloc->mHal.drvState.lod[ct].mallocPtr;
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800341 }
Jason Sams807fdc42012-07-25 17:55:39 -0700342 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800343
Jason Sams709a0972012-11-15 18:18:04 -0800344 alloc->mHal.drvState.faceOffset = o;
Jason Sams807fdc42012-07-25 17:55:39 -0700345
Jason Sams709a0972012-11-15 18:18:04 -0800346 alloc->mHal.drvState.lod[0].mallocPtr = ptr;
347 for (uint32_t lod=1; lod < alloc->mHal.drvState.lodCount; lod++) {
348 alloc->mHal.drvState.lod[lod].mallocPtr = ptr + offsets[lod];
Jason Sams463bfce2012-08-21 13:54:42 -0700349 }
Jason Sams463bfce2012-08-21 13:54:42 -0700350
Jason Sams709a0972012-11-15 18:18:04 -0800351 size_t allocSize = alloc->mHal.drvState.faceOffset;
352 if(alloc->mHal.drvState.faceCount) {
Jason Sams463bfce2012-08-21 13:54:42 -0700353 allocSize *= 6;
354 }
355
356 return allocSize;
357}
358
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800359static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero) {
360 // We align all allocations to a 16-byte boundary.
361 uint8_t* ptr = (uint8_t *)memalign(16, allocSize);
362 if (!ptr) {
363 return NULL;
364 }
365 if (forceZero) {
366 memset(ptr, 0, allocSize);
367 }
368 return ptr;
369}
370
Jason Sams463bfce2012-08-21 13:54:42 -0700371bool rsdAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) {
372 DrvAllocation *drv = (DrvAllocation *)calloc(1, sizeof(DrvAllocation));
373 if (!drv) {
374 return false;
375 }
376 alloc->mHal.drv = drv;
377
378 // Calculate the object size.
379 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL);
380
Jason Sams807fdc42012-07-25 17:55:39 -0700381 uint8_t * ptr = NULL;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800382 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT) {
Jason Sams733396b2013-02-22 12:46:18 -0800383
384 } else if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) {
385 // Allocation is allocated when the surface is created
386 // in getSurface
Tim Murray2e1a94d2012-11-29 13:12:25 -0800387 } else if (alloc->mHal.state.userProvidedPtr != NULL) {
388 // user-provided allocation
Tim Murrayba24d082013-04-09 17:31:11 -0700389 // limitations: no faces, no LOD, USAGE_SCRIPT or SCRIPT+TEXTURE only
390 if (!(alloc->mHal.state.usageFlags == (RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED) ||
391 alloc->mHal.state.usageFlags == (RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED | RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE))) {
392 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 -0800393 return false;
394 }
395 if (alloc->getType()->getDimLOD() || alloc->getType()->getDimFaces()) {
396 ALOGE("User-allocated buffers must not have multiple faces or LODs");
397 return false;
398 }
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800399
400 // rows must be 16-byte aligned
401 // validate that here, otherwise fall back to not use the user-backed allocation
402 if (((alloc->getType()->getDimX() * alloc->getType()->getElement()->getSizeBytes()) % 16) != 0) {
403 ALOGV("User-backed allocation failed stride requirement, falling back to separate allocation");
404 drv->useUserProvidedPtr = false;
405
406 ptr = allocAlignedMemory(allocSize, forceZero);
407 if (!ptr) {
408 alloc->mHal.drv = NULL;
409 free(drv);
410 return false;
411 }
412
413 } else {
414 drv->useUserProvidedPtr = true;
415 ptr = (uint8_t*)alloc->mHal.state.userProvidedPtr;
416 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800417 } else {
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800418 ptr = allocAlignedMemory(allocSize, forceZero);
Jason Sams179e9a42011-11-23 15:02:15 -0800419 if (!ptr) {
You Kimed419f32012-12-17 03:42:57 +0900420 alloc->mHal.drv = NULL;
Jason Sams179e9a42011-11-23 15:02:15 -0800421 free(drv);
422 return false;
423 }
Jason Samseb4fe182011-05-26 16:33:01 -0700424 }
Jason Sams463bfce2012-08-21 13:54:42 -0700425 // Build the pointer tables
426 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), ptr);
427 if(allocSize != verifySize) {
428 rsAssert(!"Size mismatch");
Jason Sams807fdc42012-07-25 17:55:39 -0700429 }
Jason Samseb4fe182011-05-26 16:33:01 -0700430
Tim Murray0b575de2013-03-15 15:56:43 -0700431#ifndef RS_SERVER
Jason Samseb4fe182011-05-26 16:33:01 -0700432 drv->glTarget = GL_NONE;
433 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
434 if (alloc->mHal.state.hasFaces) {
435 drv->glTarget = GL_TEXTURE_CUBE_MAP;
436 } else {
437 drv->glTarget = GL_TEXTURE_2D;
438 }
439 } else {
440 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
441 drv->glTarget = GL_ARRAY_BUFFER;
442 }
443 }
Tim Murray0b575de2013-03-15 15:56:43 -0700444#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700445
Jason Sams93eacc72012-12-18 14:26:57 -0800446#ifndef RS_COMPATIBILITY_LIB
Jason Samsa614ae12011-05-26 17:05:51 -0700447 drv->glType = rsdTypeToGLType(alloc->mHal.state.type->getElement()->getComponent().getType());
448 drv->glFormat = rsdKindToGLFormat(alloc->mHal.state.type->getElement()->getComponent().getKind());
Jason Sams93eacc72012-12-18 14:26:57 -0800449#else
450 drv->glType = 0;
451 drv->glFormat = 0;
452#endif
Jason Samsa614ae12011-05-26 17:05:51 -0700453
Jason Samseb4fe182011-05-26 16:33:01 -0700454 if (alloc->mHal.state.usageFlags & ~RS_ALLOCATION_USAGE_SCRIPT) {
455 drv->uploadDeferred = true;
456 }
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700457
Jason Samsb3220332012-04-02 14:41:54 -0700458
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700459 drv->readBackFBO = NULL;
460
Tim Murrayc2cfe6a2013-02-14 16:21:33 -0800461 // fill out the initial state of the buffer if we couldn't use the user-provided ptr and USAGE_SHARED was accepted
462 if ((alloc->mHal.state.userProvidedPtr != 0) && (drv->useUserProvidedPtr == false)) {
463 rsdAllocationData2D(rsc, alloc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X, alloc->getType()->getDimX(), alloc->getType()->getDimY(), alloc->mHal.state.userProvidedPtr, allocSize, 0);
464 }
465
Tim Murraye3af53b2014-06-10 09:46:51 -0700466
467#ifdef RS_FIND_OFFSETS
468 ALOGE("pointer for allocation: %p", alloc);
469 ALOGE("pointer for allocation.drv: %p", &alloc->mHal.drv);
470#endif
471
472
Jason Samseb4fe182011-05-26 16:33:01 -0700473 return true;
474}
475
476void rsdAllocationDestroy(const Context *rsc, Allocation *alloc) {
477 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
478
Jason Sams93eacc72012-12-18 14:26:57 -0800479#ifndef RS_COMPATIBILITY_LIB
Jason Samseb4fe182011-05-26 16:33:01 -0700480 if (drv->bufferID) {
481 // Causes a SW crash....
Steve Block65982012011-10-20 11:56:00 +0100482 //ALOGV(" mBufferID %i", mBufferID);
Jason Samseb4fe182011-05-26 16:33:01 -0700483 //glDeleteBuffers(1, &mBufferID);
484 //mBufferID = 0;
485 }
486 if (drv->textureID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700487 RSD_CALL_GL(glDeleteTextures, 1, &drv->textureID);
Jason Samseb4fe182011-05-26 16:33:01 -0700488 drv->textureID = 0;
489 }
490 if (drv->renderTargetID) {
Jason Sams2382aba2011-09-13 15:41:01 -0700491 RSD_CALL_GL(glDeleteRenderbuffers, 1, &drv->renderTargetID);
Jason Samseb4fe182011-05-26 16:33:01 -0700492 drv->renderTargetID = 0;
493 }
Jason Sams93eacc72012-12-18 14:26:57 -0800494#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700495
Jason Sams709a0972012-11-15 18:18:04 -0800496 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Tim Murrayaafa7a82013-05-09 13:22:53 -0700497 // don't free user-allocated ptrs or IO_OUTPUT buffers
498 if (!(drv->useUserProvidedPtr) &&
Sakshi Agrawalc88bcef2013-05-13 16:46:09 -0700499 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_INPUT) &&
Tim Murrayaafa7a82013-05-09 13:22:53 -0700500 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT)) {
Sakshi Agrawalc88bcef2013-05-13 16:46:09 -0700501 free(alloc->mHal.drvState.lod[0].mallocPtr);
Tim Murray2e1a94d2012-11-29 13:12:25 -0800502 }
Jason Sams709a0972012-11-15 18:18:04 -0800503 alloc->mHal.drvState.lod[0].mallocPtr = NULL;
Jason Samseb4fe182011-05-26 16:33:01 -0700504 }
Jason Sams93eacc72012-12-18 14:26:57 -0800505
506#ifndef RS_COMPATIBILITY_LIB
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700507 if (drv->readBackFBO != NULL) {
508 delete drv->readBackFBO;
509 drv->readBackFBO = NULL;
510 }
Jason Sams10c9dd72013-02-01 10:53:42 -0800511
512 if ((alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT) &&
513 (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
514
515 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800516 ANativeWindow *nw = drv->wndSurface;
517 if (nw) {
518 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
519 mapper.unlock(drv->wndBuffer->handle);
520 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
Tong, Bo5537da42014-04-17 13:44:26 +0800521
522 drv->wndSurface = NULL;
523 native_window_api_disconnect(nw, NATIVE_WINDOW_API_CPU);
524 nw->decStrong(NULL);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800525 }
Jason Sams10c9dd72013-02-01 10:53:42 -0800526 }
Jason Sams93eacc72012-12-18 14:26:57 -0800527#endif
528
Jason Samseb4fe182011-05-26 16:33:01 -0700529 free(drv);
530 alloc->mHal.drv = NULL;
531}
532
533void rsdAllocationResize(const Context *rsc, const Allocation *alloc,
534 const Type *newType, bool zeroNew) {
Jason Samsa572aca2013-01-09 11:52:26 -0800535 const uint32_t oldDimX = alloc->mHal.drvState.lod[0].dimX;
536 const uint32_t dimX = newType->getDimX();
537
Tim Murray9e2bda52012-12-18 12:05:46 -0800538 // can't resize Allocations with user-allocated buffers
539 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SHARED) {
540 ALOGE("Resize cannot be called on a USAGE_SHARED allocation");
541 return;
542 }
Jason Sams709a0972012-11-15 18:18:04 -0800543 void * oldPtr = alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams463bfce2012-08-21 13:54:42 -0700544 // Calculate the object size
545 size_t s = AllocationBuildPointerTable(rsc, alloc, newType, NULL);
546 uint8_t *ptr = (uint8_t *)realloc(oldPtr, s);
547 // Build the relative pointer tables.
548 size_t verifySize = AllocationBuildPointerTable(rsc, alloc, newType, ptr);
549 if(s != verifySize) {
550 rsAssert(!"Size mismatch");
551 }
Jason Samseb4fe182011-05-26 16:33:01 -0700552
Jason Samseb4fe182011-05-26 16:33:01 -0700553
554 if (dimX > oldDimX) {
Tim Murray099bc262013-03-20 16:54:03 -0700555 size_t stride = alloc->mHal.state.elementSizeBytes;
Jason Sams709a0972012-11-15 18:18:04 -0800556 memset(((uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr) + stride * oldDimX,
Jason Sams2275e9c2012-04-16 17:01:26 -0700557 0, stride * (dimX - oldDimX));
Jason Samseb4fe182011-05-26 16:33:01 -0700558 }
559}
560
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700561static void rsdAllocationSyncFromFBO(const Context *rsc, const Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800562#ifndef RS_COMPATIBILITY_LIB
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700563 if (!alloc->getIsScript()) {
564 return; // nothing to sync
565 }
566
567 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
568 RsdFrameBufferObj *lastFbo = dc->gl.currentFrameBuffer;
569
570 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
571 if (!drv->textureID && !drv->renderTargetID) {
572 return; // nothing was rendered here yet, so nothing to sync
573 }
574 if (drv->readBackFBO == NULL) {
575 drv->readBackFBO = new RsdFrameBufferObj();
576 drv->readBackFBO->setColorTarget(drv, 0);
577 drv->readBackFBO->setDimensions(alloc->getType()->getDimX(),
578 alloc->getType()->getDimY());
579 }
580
581 // Bind the framebuffer object so we can read back from it
582 drv->readBackFBO->setActive(rsc);
583
584 // Do the readback
Jason Sams709a0972012-11-15 18:18:04 -0800585 RSD_CALL_GL(glReadPixels, 0, 0, alloc->mHal.drvState.lod[0].dimX,
586 alloc->mHal.drvState.lod[0].dimY,
587 drv->glFormat, drv->glType, alloc->mHal.drvState.lod[0].mallocPtr);
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700588
589 // Revert framebuffer to its original
590 lastFbo->setActive(rsc);
Jason Sams93eacc72012-12-18 14:26:57 -0800591#endif
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700592}
Jason Samseb4fe182011-05-26 16:33:01 -0700593
594
595void rsdAllocationSyncAll(const Context *rsc, const Allocation *alloc,
596 RsAllocationUsageType src) {
597 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
598
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700599 if (src == RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
600 if(!alloc->getIsRenderTarget()) {
601 rsc->setError(RS_ERROR_FATAL_DRIVER,
602 "Attempting to sync allocation from render target, "
603 "for non-render target allocation");
604 } else if (alloc->getType()->getElement()->getKind() != RS_KIND_PIXEL_RGBA) {
605 rsc->setError(RS_ERROR_FATAL_DRIVER, "Cannot only sync from RGBA"
606 "render target");
607 } else {
608 rsdAllocationSyncFromFBO(rsc, alloc);
609 }
Jason Samseb4fe182011-05-26 16:33:01 -0700610 return;
611 }
612
Jason Samsb8a94e22014-02-24 17:52:32 -0800613 rsAssert(src == RS_ALLOCATION_USAGE_SCRIPT || src == RS_ALLOCATION_USAGE_SHARED);
Jason Samseb4fe182011-05-26 16:33:01 -0700614
615 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) {
616 UploadToTexture(rsc, alloc);
617 } else {
Jason Samsb3220332012-04-02 14:41:54 -0700618 if ((alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) &&
Jason Sams0dc66932012-04-10 17:05:49 -0700619 !(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT)) {
Jason Samseb4fe182011-05-26 16:33:01 -0700620 AllocateRenderTarget(rsc, alloc);
621 }
622 }
623 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) {
624 UploadToBufferObject(rsc, alloc);
625 }
626
Tim Murrayba24d082013-04-09 17:31:11 -0700627 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SHARED) {
Jason Samsb8a94e22014-02-24 17:52:32 -0800628
629 if (src == RS_ALLOCATION_USAGE_SHARED) {
630 // just a memory fence for the CPU driver
631 // vendor drivers probably want to flush any dirty cachelines for
632 // this particular Allocation
633 __sync_synchronize();
634 }
Tim Murrayba24d082013-04-09 17:31:11 -0700635 }
636
Jason Samseb4fe182011-05-26 16:33:01 -0700637 drv->uploadDeferred = false;
638}
639
640void rsdAllocationMarkDirty(const Context *rsc, const Allocation *alloc) {
641 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
642 drv->uploadDeferred = true;
643}
644
Jason Sams4961cce2013-04-11 16:11:46 -0700645#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800646static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
647 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
648
Jamie Genniscd919a12012-06-13 16:34:11 -0700649 int32_t r = native_window_dequeue_buffer_and_wait(nw, &drv->wndBuffer);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800650 if (r) {
651 rsc->setError(RS_ERROR_DRIVER, "Error getting next IO output buffer.");
652 return false;
653 }
654
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800655 // Must lock the whole surface
656 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
657 Rect bounds(drv->wndBuffer->width, drv->wndBuffer->height);
658
659 void *dst = NULL;
660 mapper.lock(drv->wndBuffer->handle,
661 GRALLOC_USAGE_SW_READ_NEVER | GRALLOC_USAGE_SW_WRITE_OFTEN,
662 bounds, &dst);
Jason Sams709a0972012-11-15 18:18:04 -0800663 alloc->mHal.drvState.lod[0].mallocPtr = dst;
664 alloc->mHal.drvState.lod[0].stride = drv->wndBuffer->stride * alloc->mHal.state.elementSizeBytes;
Stephen Hines94999c32013-02-05 16:58:22 -0800665 rsAssert((alloc->mHal.drvState.lod[0].stride & 0xf) == 0);
Jason Samsb3220332012-04-02 14:41:54 -0700666
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800667 return true;
668}
Jason Sams93eacc72012-12-18 14:26:57 -0800669#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800670
Jason Sams733396b2013-02-22 12:46:18 -0800671void rsdAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
Jason Sams93eacc72012-12-18 14:26:57 -0800672#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800673 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800674 ANativeWindow *old = drv->wndSurface;
675
676 if (nw) {
677 nw->incStrong(NULL);
678 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800679
Jason Samsb3220332012-04-02 14:41:54 -0700680 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
681 //TODO finish support for render target + script
682 drv->wnd = nw;
683 return;
684 }
685
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800686 // Cleanup old surface if there is one.
Tim Murray3a25fdd2013-02-22 17:56:56 -0800687 if (drv->wndSurface) {
688 ANativeWindow *old = drv->wndSurface;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800689 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
690 mapper.unlock(drv->wndBuffer->handle);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800691 old->cancelBuffer(old, drv->wndBuffer, -1);
692 drv->wndSurface = NULL;
Jason Sams9dae48e2013-09-23 15:56:11 -0700693
694 native_window_api_disconnect(old, NATIVE_WINDOW_API_CPU);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800695 old->decStrong(NULL);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800696 }
697
698 if (nw != NULL) {
699 int32_t r;
Jason Samsb3220332012-04-02 14:41:54 -0700700 uint32_t flags = 0;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800701
Jason Samsb3220332012-04-02 14:41:54 -0700702 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
703 flags |= GRALLOC_USAGE_SW_READ_RARELY | GRALLOC_USAGE_SW_WRITE_OFTEN;
704 }
705 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
706 flags |= GRALLOC_USAGE_HW_RENDER;
707 }
708
Jason Sams9dae48e2013-09-23 15:56:11 -0700709 r = native_window_api_connect(nw, NATIVE_WINDOW_API_CPU);
710 if (r) {
711 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer usage.");
712 goto error;
713 }
714
Jason Samsb3220332012-04-02 14:41:54 -0700715 r = native_window_set_usage(nw, flags);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800716 if (r) {
717 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer usage.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800718 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800719 }
720
Jason Samsa572aca2013-01-09 11:52:26 -0800721 r = native_window_set_buffers_dimensions(nw, alloc->mHal.drvState.lod[0].dimX,
722 alloc->mHal.drvState.lod[0].dimY);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800723 if (r) {
724 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer dimensions.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800725 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800726 }
727
Jason Sams733396b2013-02-22 12:46:18 -0800728 int format = 0;
729 const Element *e = alloc->mHal.state.type->getElement();
Stephen Hines8b9b3aa2013-08-02 15:51:36 -0700730 rsAssert(e->getType() == RS_TYPE_UNSIGNED_8);
731 rsAssert(e->getVectorSize() == 4);
732 rsAssert(e->getKind() == RS_KIND_PIXEL_RGBA);
733 format = PIXEL_FORMAT_RGBA_8888;
Jason Sams733396b2013-02-22 12:46:18 -0800734
735 r = native_window_set_buffers_format(nw, format);
736 if (r) {
737 rsc->setError(RS_ERROR_DRIVER, "Error setting IO output buffer format.");
Tim Murray3a25fdd2013-02-22 17:56:56 -0800738 goto error;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800739 }
740
741 IoGetBuffer(rsc, alloc, nw);
Tim Murray3a25fdd2013-02-22 17:56:56 -0800742 drv->wndSurface = nw;
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800743 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800744
745 return;
746
747 error:
748
749 if (nw) {
750 nw->decStrong(NULL);
751 }
752
753
Jason Sams93eacc72012-12-18 14:26:57 -0800754#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800755}
756
757void rsdAllocationIoSend(const Context *rsc, Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800758#ifndef RS_COMPATIBILITY_LIB
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800759 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Tim Murray3a25fdd2013-02-22 17:56:56 -0800760 ANativeWindow *nw = drv->wndSurface;
Jason Samsb3220332012-04-02 14:41:54 -0700761 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) {
762 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
763 RSD_CALL_GL(eglSwapBuffers, dc->gl.egl.display, dc->gl.egl.surface);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800764 return;
765 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800766 if (nw) {
767 if (alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
768 GraphicBufferMapper &mapper = GraphicBufferMapper::get();
769 mapper.unlock(drv->wndBuffer->handle);
770 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
771 if (r) {
772 rsc->setError(RS_ERROR_DRIVER, "Error sending IO output buffer.");
773 return;
774 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800775
Tim Murray3a25fdd2013-02-22 17:56:56 -0800776 IoGetBuffer(rsc, alloc, nw);
Jason Samsb3220332012-04-02 14:41:54 -0700777 }
Tim Murray3a25fdd2013-02-22 17:56:56 -0800778 } else {
779 rsc->setError(RS_ERROR_DRIVER, "Sent IO buffer with no attached surface.");
780 return;
Jason Samsb3220332012-04-02 14:41:54 -0700781 }
Jason Sams93eacc72012-12-18 14:26:57 -0800782#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800783}
784
785void rsdAllocationIoReceive(const Context *rsc, Allocation *alloc) {
Jason Sams93eacc72012-12-18 14:26:57 -0800786#ifndef RS_COMPATIBILITY_LIB
Jason Sams3522f402012-03-23 11:47:26 -0700787 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Jason Samsddceab92013-08-07 13:02:32 -0700788 if (!(alloc->mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT)) {
Tim Murray3a25fdd2013-02-22 17:56:56 -0800789 drv->surfaceTexture->updateTexImage();
Jason Sams733396b2013-02-22 12:46:18 -0800790 }
Jason Sams93eacc72012-12-18 14:26:57 -0800791#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800792}
793
794
Jason Samseb4fe182011-05-26 16:33:01 -0700795void rsdAllocationData1D(const Context *rsc, const Allocation *alloc,
Tim Murray099bc262013-03-20 16:54:03 -0700796 uint32_t xoff, uint32_t lod, size_t count,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800797 const void *data, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -0700798 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
799
Tim Murray099bc262013-03-20 16:54:03 -0700800 const size_t eSize = alloc->mHal.state.type->getElementSizeBytes();
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700801 uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Tim Murray099bc262013-03-20 16:54:03 -0700802 size_t size = count * eSize;
Stephen Hines20c535f2012-12-06 19:04:38 -0800803 if (ptr != data) {
804 // Skip the copy if we are the same allocation. This can arise from
805 // our Bitmap optimization, where we share the same storage.
806 if (alloc->mHal.state.hasReferences) {
807 alloc->incRefs(data, count);
808 alloc->decRefs(ptr, count);
809 }
810 memcpy(ptr, data, size);
Jason Samseb4fe182011-05-26 16:33:01 -0700811 }
Jason Samseb4fe182011-05-26 16:33:01 -0700812 drv->uploadDeferred = true;
813}
814
815void rsdAllocationData2D(const Context *rsc, const Allocation *alloc,
816 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800817 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
Jason Samseb4fe182011-05-26 16:33:01 -0700818 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
819
Tim Murray099bc262013-03-20 16:54:03 -0700820 size_t eSize = alloc->mHal.state.elementSizeBytes;
821 size_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800822 if (!stride) {
823 stride = lineSize;
824 }
Jason Samseb4fe182011-05-26 16:33:01 -0700825
Jason Sams709a0972012-11-15 18:18:04 -0800826 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Samseb4fe182011-05-26 16:33:01 -0700827 const uint8_t *src = static_cast<const uint8_t *>(data);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700828 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Stephen Hines20c535f2012-12-06 19:04:38 -0800829 if (dst == src) {
830 // Skip the copy if we are the same allocation. This can arise from
831 // our Bitmap optimization, where we share the same storage.
832 drv->uploadDeferred = true;
833 return;
834 }
Jason Samseb4fe182011-05-26 16:33:01 -0700835
836 for (uint32_t line=yoff; line < (yoff+h); line++) {
837 if (alloc->mHal.state.hasReferences) {
838 alloc->incRefs(src, w);
839 alloc->decRefs(dst, w);
840 }
841 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800842 src += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800843 dst += alloc->mHal.drvState.lod[lod].stride;
Jason Samseb4fe182011-05-26 16:33:01 -0700844 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800845 if (alloc->mHal.state.yuv) {
Jason Sams0052f8d2013-09-19 17:27:29 -0700846 size_t clineSize = lineSize;
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800847 int lod = 1;
Jason Sams61656a72013-09-03 16:21:18 -0700848 int maxLod = 2;
849 if (alloc->mHal.state.yuv == HAL_PIXEL_FORMAT_YV12) {
850 maxLod = 3;
Jason Sams0052f8d2013-09-19 17:27:29 -0700851 clineSize >>= 1;
Jason Sams61656a72013-09-03 16:21:18 -0700852 } else if (alloc->mHal.state.yuv == HAL_PIXEL_FORMAT_YCrCb_420_SP) {
853 lod = 2;
854 maxLod = 3;
855 }
856
857 while (lod < maxLod) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700858 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800859
860 for (uint32_t line=(yoff >> 1); line < ((yoff+h)>>1); line++) {
Jason Sams0052f8d2013-09-19 17:27:29 -0700861 memcpy(dst, src, clineSize);
Jason Sams61656a72013-09-03 16:21:18 -0700862 src += alloc->mHal.drvState.lod[lod].stride;
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800863 dst += alloc->mHal.drvState.lod[lod].stride;
864 }
865 lod++;
866 }
867
868 }
Jason Samseb4fe182011-05-26 16:33:01 -0700869 drv->uploadDeferred = true;
870 } else {
Jason Sams2382aba2011-09-13 15:41:01 -0700871 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h);
Jason Samseb4fe182011-05-26 16:33:01 -0700872 }
873}
874
875void rsdAllocationData3D(const Context *rsc, const Allocation *alloc,
876 uint32_t xoff, uint32_t yoff, uint32_t zoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700877 uint32_t lod,
878 uint32_t w, uint32_t h, uint32_t d, const void *data,
879 size_t sizeBytes, size_t stride) {
880 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
Jason Samseb4fe182011-05-26 16:33:01 -0700881
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700882 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
883 uint32_t lineSize = eSize * w;
884 if (!stride) {
885 stride = lineSize;
886 }
887
888 if (alloc->mHal.drvState.lod[0].mallocPtr) {
889 const uint8_t *src = static_cast<const uint8_t *>(data);
890 for (uint32_t z = zoff; z < d; z++) {
891 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, z, lod,
892 RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
893 if (dst == src) {
894 // Skip the copy if we are the same allocation. This can arise from
895 // our Bitmap optimization, where we share the same storage.
896 drv->uploadDeferred = true;
897 return;
898 }
899
900 for (uint32_t line=yoff; line < (yoff+h); line++) {
901 if (alloc->mHal.state.hasReferences) {
902 alloc->incRefs(src, w);
903 alloc->decRefs(dst, w);
904 }
905 memcpy(dst, src, lineSize);
906 src += stride;
907 dst += alloc->mHal.drvState.lod[lod].stride;
908 }
909 }
910 drv->uploadDeferred = true;
911 }
Jason Samseb4fe182011-05-26 16:33:01 -0700912}
913
Jason Sams807fdc42012-07-25 17:55:39 -0700914void rsdAllocationRead1D(const Context *rsc, const Allocation *alloc,
Tim Murray099bc262013-03-20 16:54:03 -0700915 uint32_t xoff, uint32_t lod, size_t count,
Jason Sams807fdc42012-07-25 17:55:39 -0700916 void *data, size_t sizeBytes) {
Tim Murray099bc262013-03-20 16:54:03 -0700917 const size_t eSize = alloc->mHal.state.type->getElementSizeBytes();
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700918 const uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Stephen Hines20c535f2012-12-06 19:04:38 -0800919 if (data != ptr) {
920 // Skip the copy if we are the same allocation. This can arise from
921 // our Bitmap optimization, where we share the same storage.
922 memcpy(data, ptr, count * eSize);
923 }
Jason Sams807fdc42012-07-25 17:55:39 -0700924}
925
926void rsdAllocationRead2D(const Context *rsc, const Allocation *alloc,
Tim Murray358747a2012-11-26 13:52:04 -0800927 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
928 uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) {
Tim Murray099bc262013-03-20 16:54:03 -0700929 size_t eSize = alloc->mHal.state.elementSizeBytes;
930 size_t lineSize = eSize * w;
Tim Murray358747a2012-11-26 13:52:04 -0800931 if (!stride) {
932 stride = lineSize;
933 }
Jason Sams807fdc42012-07-25 17:55:39 -0700934
Jason Sams709a0972012-11-15 18:18:04 -0800935 if (alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams807fdc42012-07-25 17:55:39 -0700936 uint8_t *dst = static_cast<uint8_t *>(data);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700937 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
Stephen Hines20c535f2012-12-06 19:04:38 -0800938 if (dst == src) {
939 // Skip the copy if we are the same allocation. This can arise from
940 // our Bitmap optimization, where we share the same storage.
941 return;
942 }
Jason Sams807fdc42012-07-25 17:55:39 -0700943
944 for (uint32_t line=yoff; line < (yoff+h); line++) {
945 memcpy(dst, src, lineSize);
Tim Murray358747a2012-11-26 13:52:04 -0800946 dst += stride;
Jason Sams709a0972012-11-15 18:18:04 -0800947 src += alloc->mHal.drvState.lod[lod].stride;
Jason Sams807fdc42012-07-25 17:55:39 -0700948 }
949 } else {
950 ALOGE("Add code to readback from non-script memory");
951 }
952}
953
Tim Murray358747a2012-11-26 13:52:04 -0800954
Jason Sams807fdc42012-07-25 17:55:39 -0700955void rsdAllocationRead3D(const Context *rsc, const Allocation *alloc,
956 uint32_t xoff, uint32_t yoff, uint32_t zoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700957 uint32_t lod,
958 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) {
959 uint32_t eSize = alloc->mHal.state.elementSizeBytes;
960 uint32_t lineSize = eSize * w;
961 if (!stride) {
962 stride = lineSize;
963 }
Jason Sams807fdc42012-07-25 17:55:39 -0700964
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700965 if (alloc->mHal.drvState.lod[0].mallocPtr) {
966 uint8_t *dst = static_cast<uint8_t *>(data);
967 for (uint32_t z = zoff; z < d; z++) {
968 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, z, lod,
969 RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
970 if (dst == src) {
971 // Skip the copy if we are the same allocation. This can arise from
972 // our Bitmap optimization, where we share the same storage.
973 return;
974 }
975
976 for (uint32_t line=yoff; line < (yoff+h); line++) {
977 memcpy(dst, src, lineSize);
978 dst += stride;
979 src += alloc->mHal.drvState.lod[lod].stride;
980 }
981 }
982 }
Jason Sams807fdc42012-07-25 17:55:39 -0700983}
984
985void * rsdAllocationLock1D(const android::renderscript::Context *rsc,
986 const android::renderscript::Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -0800987 return alloc->mHal.drvState.lod[0].mallocPtr;
Jason Sams807fdc42012-07-25 17:55:39 -0700988}
989
990void rsdAllocationUnlock1D(const android::renderscript::Context *rsc,
991 const android::renderscript::Allocation *alloc) {
992
993}
994
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700995void rsdAllocationData1D_alloc(const android::renderscript::Context *rsc,
996 const android::renderscript::Allocation *dstAlloc,
Tim Murray099bc262013-03-20 16:54:03 -0700997 uint32_t dstXoff, uint32_t dstLod, size_t count,
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700998 const android::renderscript::Allocation *srcAlloc,
Alex Sakhartchouka9495242011-06-16 11:05:13 -0700999 uint32_t srcXoff, uint32_t srcLod) {
1000}
1001
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001002
1003void rsdAllocationData2D_alloc_script(const android::renderscript::Context *rsc,
1004 const android::renderscript::Allocation *dstAlloc,
1005 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
1006 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
1007 const android::renderscript::Allocation *srcAlloc,
1008 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
1009 RsAllocationCubemapFace srcFace) {
Tim Murray099bc262013-03-20 16:54:03 -07001010 size_t elementSize = dstAlloc->getType()->getElementSizeBytes();
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001011 for (uint32_t i = 0; i < h; i ++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001012 uint8_t *dstPtr = GetOffsetPtr(dstAlloc, dstXoff, dstYoff + i, 0, dstLod, dstFace);
1013 uint8_t *srcPtr = GetOffsetPtr(srcAlloc, srcXoff, srcYoff + i, 0, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001014 memcpy(dstPtr, srcPtr, w * elementSize);
1015
Steve Blockaf12ac62012-01-06 19:20:56 +00001016 //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 -07001017 // dstXoff, dstYoff, dstLod, dstFace, w, h, srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001018 }
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001019}
1020
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001021void rsdAllocationData3D_alloc_script(const android::renderscript::Context *rsc,
1022 const android::renderscript::Allocation *dstAlloc,
1023 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod,
1024 uint32_t w, uint32_t h, uint32_t d,
1025 const android::renderscript::Allocation *srcAlloc,
1026 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) {
1027 uint32_t elementSize = dstAlloc->getType()->getElementSizeBytes();
1028 for (uint32_t j = 0; j < d; j++) {
1029 for (uint32_t i = 0; i < h; i ++) {
1030 uint8_t *dstPtr = GetOffsetPtr(dstAlloc, dstXoff, dstYoff + i, dstZoff + j,
1031 dstLod, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
1032 uint8_t *srcPtr = GetOffsetPtr(srcAlloc, srcXoff, srcYoff + i, srcZoff + j,
1033 srcLod, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
1034 memcpy(dstPtr, srcPtr, w * elementSize);
1035
1036 //ALOGE("COPIED dstXoff(%u), dstYoff(%u), dstLod(%u), dstFace(%u), w(%u), h(%u), srcXoff(%u), srcYoff(%u), srcLod(%u), srcFace(%u)",
1037 // dstXoff, dstYoff, dstLod, dstFace, w, h, srcXoff, srcYoff, srcLod, srcFace);
1038 }
1039 }
1040}
1041
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001042void rsdAllocationData2D_alloc(const android::renderscript::Context *rsc,
1043 const android::renderscript::Allocation *dstAlloc,
1044 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
1045 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
1046 const android::renderscript::Allocation *srcAlloc,
1047 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
1048 RsAllocationCubemapFace srcFace) {
Alex Sakhartchouka9495242011-06-16 11:05:13 -07001049 if (!dstAlloc->getIsScript() && !srcAlloc->getIsScript()) {
1050 rsc->setError(RS_ERROR_FATAL_DRIVER, "Non-script allocation copies not "
1051 "yet implemented.");
1052 return;
1053 }
1054 rsdAllocationData2D_alloc_script(rsc, dstAlloc, dstXoff, dstYoff,
1055 dstLod, dstFace, w, h, srcAlloc,
1056 srcXoff, srcYoff, srcLod, srcFace);
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001057}
1058
1059void rsdAllocationData3D_alloc(const android::renderscript::Context *rsc,
1060 const android::renderscript::Allocation *dstAlloc,
1061 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001062 uint32_t dstLod,
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001063 uint32_t w, uint32_t h, uint32_t d,
1064 const android::renderscript::Allocation *srcAlloc,
1065 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001066 uint32_t srcLod) {
1067 if (!dstAlloc->getIsScript() && !srcAlloc->getIsScript()) {
1068 rsc->setError(RS_ERROR_FATAL_DRIVER, "Non-script allocation copies not "
1069 "yet implemented.");
1070 return;
1071 }
1072 rsdAllocationData3D_alloc_script(rsc, dstAlloc, dstXoff, dstYoff, dstZoff,
1073 dstLod, w, h, d, srcAlloc,
1074 srcXoff, srcYoff, srcZoff, srcLod);
Alex Sakhartchouk74a82792011-06-14 11:13:19 -07001075}
1076
Jason Samseb4fe182011-05-26 16:33:01 -07001077void rsdAllocationElementData1D(const Context *rsc, const Allocation *alloc,
1078 uint32_t x,
Tim Murray099bc262013-03-20 16:54:03 -07001079 const void *data, uint32_t cIdx, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -07001080 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
1081
Tim Murray099bc262013-03-20 16:54:03 -07001082 size_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001083 uint8_t * ptr = GetOffsetPtr(alloc, x, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -07001084
1085 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
1086 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
1087
1088 if (alloc->mHal.state.hasReferences) {
1089 e->incRefs(data);
1090 e->decRefs(ptr);
1091 }
1092
1093 memcpy(ptr, data, sizeBytes);
1094 drv->uploadDeferred = true;
1095}
1096
1097void rsdAllocationElementData2D(const Context *rsc, const Allocation *alloc,
1098 uint32_t x, uint32_t y,
Tim Murray099bc262013-03-20 16:54:03 -07001099 const void *data, uint32_t cIdx, size_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -07001100 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
1101
Tim Murray099bc262013-03-20 16:54:03 -07001102 size_t eSize = alloc->mHal.state.elementSizeBytes;
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001103 uint8_t * ptr = GetOffsetPtr(alloc, x, y, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
Jason Samseb4fe182011-05-26 16:33:01 -07001104
1105 const Element * e = alloc->mHal.state.type->getElement()->getField(cIdx);
1106 ptr += alloc->mHal.state.type->getElement()->getFieldOffsetBytes(cIdx);
1107
1108 if (alloc->mHal.state.hasReferences) {
1109 e->incRefs(data);
1110 e->decRefs(ptr);
1111 }
1112
1113 memcpy(ptr, data, sizeBytes);
1114 drv->uploadDeferred = true;
1115}
1116
Jason Sams61a4bb72012-07-25 19:33:43 -07001117static void mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001118 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1119 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001120
1121 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001122 uint16_t *oPtr = (uint16_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1123 const uint16_t *i1 = (uint16_t *)GetOffsetPtr(alloc, 0, 0, y*2, lod, face);
1124 const uint16_t *i2 = (uint16_t *)GetOffsetPtr(alloc, 0, 0, y*2+1, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001125
1126 for (uint32_t x=0; x < w; x++) {
1127 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
1128 oPtr ++;
1129 i1 += 2;
1130 i2 += 2;
1131 }
1132 }
1133}
1134
1135static void mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001136 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1137 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001138
1139 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001140 uint32_t *oPtr = (uint32_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1141 const uint32_t *i1 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2, 0, lod, face);
1142 const uint32_t *i2 = (uint32_t *)GetOffsetPtr(alloc, 0, y*2+1, 0, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001143
1144 for (uint32_t x=0; x < w; x++) {
1145 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
1146 oPtr ++;
1147 i1 += 2;
1148 i2 += 2;
1149 }
1150 }
1151}
1152
1153static void mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) {
Jason Sams709a0972012-11-15 18:18:04 -08001154 uint32_t w = alloc->mHal.drvState.lod[lod + 1].dimX;
1155 uint32_t h = alloc->mHal.drvState.lod[lod + 1].dimY;
Jason Sams61a4bb72012-07-25 19:33:43 -07001156
1157 for (uint32_t y=0; y < h; y++) {
Jason Sams3bbc0fd2013-04-09 14:16:13 -07001158 uint8_t *oPtr = GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
1159 const uint8_t *i1 = GetOffsetPtr(alloc, 0, y*2, 0, lod, face);
1160 const uint8_t *i2 = GetOffsetPtr(alloc, 0, y*2+1, 0, lod, face);
Jason Sams61a4bb72012-07-25 19:33:43 -07001161
1162 for (uint32_t x=0; x < w; x++) {
1163 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f);
1164 oPtr ++;
1165 i1 += 2;
1166 i2 += 2;
1167 }
1168 }
1169}
1170
1171void rsdAllocationGenerateMipmaps(const Context *rsc, const Allocation *alloc) {
Jason Sams709a0972012-11-15 18:18:04 -08001172 if(!alloc->mHal.drvState.lod[0].mallocPtr) {
Jason Sams61a4bb72012-07-25 19:33:43 -07001173 return;
1174 }
1175 uint32_t numFaces = alloc->getType()->getDimFaces() ? 6 : 1;
1176 for (uint32_t face = 0; face < numFaces; face ++) {
1177 for (uint32_t lod=0; lod < (alloc->getType()->getLODCount() -1); lod++) {
1178 switch (alloc->getType()->getElement()->getSizeBits()) {
1179 case 32:
1180 mip8888(alloc, lod, (RsAllocationCubemapFace)face);
1181 break;
1182 case 16:
1183 mip565(alloc, lod, (RsAllocationCubemapFace)face);
1184 break;
1185 case 8:
1186 mip8(alloc, lod, (RsAllocationCubemapFace)face);
1187 break;
1188 }
1189 }
1190 }
1191}
Jason Samsddceab92013-08-07 13:02:32 -07001192
1193uint32_t rsdAllocationGrallocBits(const android::renderscript::Context *rsc,
1194 android::renderscript::Allocation *alloc)
1195{
1196 return 0;
1197}
1198
Jason Samsa36c50a2014-06-17 12:06:06 -07001199void rsdAllocationUpdateCachedObject(const Context *rsc,
1200 const Allocation *alloc,
1201 rs_allocation *obj)
1202{
1203 obj->p = alloc;
1204#ifdef __LP64__
1205 if (alloc != NULL) {
1206 obj->r = alloc->mHal.drvState.lod[0].mallocPtr;
1207 obj->v1 = alloc->mHal.drv;
1208 obj->v2 = (void *)alloc->mHal.drvState.lod[0].stride;
1209 } else {
1210 obj->r = NULL;
1211 obj->v1 = NULL;
1212 obj->v2 = NULL;
1213 }
1214#endif
1215}