blob: 13ac2de4b8c1c6470051442e917abc84de162e2a [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
Jason Samsbc0ca6b2013-02-15 18:13:43 -08002 * Copyright (C) 2013 The Android Open Source Project
Jason Sams326e0dd2009-05-22 14:03:28 -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 */
Jason Sams326e0dd2009-05-22 14:03:28 -070016
Alex Sakhartchouk77d9f4b2011-01-31 14:53:24 -080017#include "rsContext.h"
Alex Sakhartchouk4edf0302012-03-09 10:47:27 -080018#include "rsAllocation.h"
19#include "rsAdapter.h"
Jason Samseb4fe182011-05-26 16:33:01 -070020#include "rs_hal.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"
Andy McFadden58fd6a52012-12-18 09:50:03 -080024#include "gui/GLConsumer.h"
Tim Murray0b575de2013-03-15 15:56:43 -070025#endif
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -070026
Jason Sams326e0dd2009-05-22 14:03:28 -070027using namespace android;
28using namespace android::renderscript;
29
Alex Sakhartchouka2aab8b2010-12-15 09:59:58 -080030Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080031 RsAllocationMipmapControl mc, void * ptr)
Alex Sakhartchouka2aab8b2010-12-15 09:59:58 -080032 : ObjectBase(rsc) {
Jason Samsfa84da22010-03-01 15:31:04 -080033
Jason Samseb4fe182011-05-26 16:33:01 -070034 memset(&mHal, 0, sizeof(mHal));
35 mHal.state.mipmapControl = RS_ALLOCATION_MIPMAP_NONE;
Jason Samsbad80742011-03-16 16:29:28 -070036 mHal.state.usageFlags = usages;
37 mHal.state.mipmapControl = mc;
Tim Murray2e1a94d2012-11-29 13:12:25 -080038 mHal.state.userProvidedPtr = ptr;
Jason Sams366c9c82010-12-08 16:14:36 -080039
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070040 setType(type);
Jason Samsbad80742011-03-16 16:29:28 -070041 updateCache();
42}
Jason Samsfa84da22010-03-01 15:31:04 -080043
Jason Samscfea6c12015-02-09 12:50:22 -080044Allocation::Allocation(Context *rsc, const Allocation *alloc, const Type *type)
45 : ObjectBase(rsc) {
46
47 memset(&mHal, 0, sizeof(mHal));
48
49
50 mHal.state.baseAlloc = alloc;
51 mHal.state.type = type;
52 mHal.state.usageFlags = alloc->mHal.state.usageFlags;
53 mHal.state.mipmapControl = RS_ALLOCATION_MIPMAP_NONE;
54
55 setType(type);
56 updateCache();
57
58
59
60
61 struct Hal {
62 void * drv;
63
64 struct DrvState {
65 struct LodState {
66 void * mallocPtr;
67 size_t stride;
68 uint32_t dimX;
69 uint32_t dimY;
70 uint32_t dimZ;
71 } lod[android::renderscript::Allocation::MAX_LOD];
72 size_t faceOffset;
73 uint32_t lodCount;
74 uint32_t faceCount;
75
76 struct YuvState {
77 uint32_t shift;
78 uint32_t step;
79 } yuv;
80
81 int grallocFlags;
82 uint32_t dimArray[Type::mMaxArrays];
83 };
84 mutable DrvState drvState;
85
86 };
87 Hal mHal;
88
89}
90
Tim Murray34689382013-03-11 12:12:03 -070091void Allocation::operator delete(void* ptr) {
92 if (ptr) {
93 Allocation *a = (Allocation*) ptr;
94 a->getContext()->mHal.funcs.freeRuntimeMem(ptr);
95 }
96}
97
Jason Samseb4fe182011-05-26 16:33:01 -070098Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080099 RsAllocationMipmapControl mc, void * ptr) {
Tim Murray34689382013-03-11 12:12:03 -0700100 // Allocation objects must use allocator specified by the driver
101 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Allocation), 0);
102
103 if (!allocMem) {
104 rsc->setError(RS_ERROR_FATAL_DRIVER, "Couldn't allocate memory for Allocation");
Chris Wailes44bef6f2014-08-12 13:51:10 -0700105 return nullptr;
Tim Murray34689382013-03-11 12:12:03 -0700106 }
107
108 Allocation *a = new (allocMem) Allocation(rsc, type, usages, mc, ptr);
Jason Samseb4fe182011-05-26 16:33:01 -0700109
110 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
111 rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
112 delete a;
Chris Wailes44bef6f2014-08-12 13:51:10 -0700113 return nullptr;
Jason Samseb4fe182011-05-26 16:33:01 -0700114 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800115
Jason Samseb4fe182011-05-26 16:33:01 -0700116 return a;
117}
118
Jason Samscfea6c12015-02-09 12:50:22 -0800119Allocation * Allocation::createAdapter(Context *rsc, const Allocation *alloc, const Type *type) {
120 // Allocation objects must use allocator specified by the driver
121 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Allocation), 0);
122
123 if (!allocMem) {
124 rsc->setError(RS_ERROR_FATAL_DRIVER, "Couldn't allocate memory for Allocation");
125 return nullptr;
126 }
127
128 Allocation *a = new (allocMem) Allocation(rsc, alloc, type);
129
130 if (!rsc->mHal.funcs.allocation.initAdapter(rsc, a)) {
131 rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
132 delete a;
133 return nullptr;
134 }
135
136 return a;
137}
138
139
Jason Samsbad80742011-03-16 16:29:28 -0700140void Allocation::updateCache() {
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700141 const Type *type = mHal.state.type;
Jason Samsa572aca2013-01-09 11:52:26 -0800142 mHal.state.yuv = type->getDimYuv();
Jason Samsbad80742011-03-16 16:29:28 -0700143 mHal.state.hasFaces = type->getDimFaces();
144 mHal.state.hasMipmaps = type->getDimLOD();
145 mHal.state.elementSizeBytes = type->getElementSizeBytes();
146 mHal.state.hasReferences = mHal.state.type->getElement()->getHasReferences();
Jason Sams326e0dd2009-05-22 14:03:28 -0700147}
148
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800149Allocation::~Allocation() {
Jason Samsddceab92013-08-07 13:02:32 -0700150#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
151 if (mGrallocConsumer.get()) {
152 mGrallocConsumer->unlockBuffer();
Chris Wailes44bef6f2014-08-12 13:51:10 -0700153 mGrallocConsumer = nullptr;
Jason Samsddceab92013-08-07 13:02:32 -0700154 }
155#endif
156
Jason Samsc7cec1e2011-08-18 18:01:33 -0700157 freeChildrenUnlocked();
Jason Samseb4fe182011-05-26 16:33:01 -0700158 mRSC->mHal.funcs.allocation.destroy(mRSC, this);
Jason Sams326e0dd2009-05-22 14:03:28 -0700159}
160
Jason Sams366c9c82010-12-08 16:14:36 -0800161void Allocation::syncAll(Context *rsc, RsAllocationUsageType src) {
Jason Samseb4fe182011-05-26 16:33:01 -0700162 rsc->mHal.funcs.allocation.syncAll(rsc, this, src);
Jason Samscf4c7c92009-12-14 12:57:40 -0800163}
164
Jason Samsb8a94e22014-02-24 17:52:32 -0800165void * Allocation::getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face,
166 uint32_t z, uint32_t array, size_t *stride) {
167
168 if ((lod >= mHal.drvState.lodCount) ||
169 (z && (z >= mHal.drvState.lod[lod].dimZ)) ||
170 ((face != RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X) && !mHal.state.hasFaces) ||
171 (array != 0)) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700172 return nullptr;
Jason Samsb8a94e22014-02-24 17:52:32 -0800173 }
174
175 size_t s = 0;
176 //void *ptr = mRSC->mHal.funcs.allocation.lock1D(rsc, this);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700177 if ((stride != nullptr) && mHal.drvState.lod[0].dimY) {
Jason Samsb8a94e22014-02-24 17:52:32 -0800178 *stride = mHal.drvState.lod[lod].stride;
179 }
180 return mHal.drvState.lod[lod].mallocPtr;
181}
182
Jason Sams4b45b892010-12-29 14:31:29 -0800183void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800184 uint32_t count, const void *data, size_t sizeBytes) {
185 const size_t eSize = mHal.state.type->getElementSizeBytes();
Jason Sams9397e302009-08-27 20:23:34 -0700186
Jason Samseb4fe182011-05-26 16:33:01 -0700187 if ((count * eSize) != sizeBytes) {
Jason Samsa2737932014-01-14 12:28:33 -0800188 char buf[1024];
189 sprintf(buf, "Allocation::subData called with mismatched size expected %zu, got %zu",
190 (count * eSize), sizeBytes);
191 rsc->setError(RS_ERROR_BAD_VALUE, buf);
Jason Samsbad80742011-03-16 16:29:28 -0700192 mHal.state.type->dumpLOGV("type info");
Jason Sams9397e302009-08-27 20:23:34 -0700193 return;
194 }
Jason Samse3929c92010-08-09 18:13:33 -0700195
Jason Samseb4fe182011-05-26 16:33:01 -0700196 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
197 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -0700198}
199
Jason Sams4b45b892010-12-29 14:31:29 -0800200void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800201 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
Tim Murray358747a2012-11-26 13:52:04 -0800202 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
Jason Samseb4fe182011-05-26 16:33:01 -0700203 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -0700204}
205
Jason Sams236385b2011-01-12 14:53:25 -0800206void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700207 uint32_t lod,
208 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) {
209 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
210 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -0700211}
212
Jason Sams807fdc42012-07-25 17:55:39 -0700213void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod,
Tim Murray358747a2012-11-26 13:52:04 -0800214 uint32_t count, void *data, size_t sizeBytes) {
Jason Sams807fdc42012-07-25 17:55:39 -0700215 const size_t eSize = mHal.state.type->getElementSizeBytes();
216
217 if ((count * eSize) != sizeBytes) {
Jason Samsa2737932014-01-14 12:28:33 -0800218 char buf[1024];
219 sprintf(buf, "Allocation::read called with mismatched size expected %zu, got %zu",
220 (count * eSize), sizeBytes);
221 rsc->setError(RS_ERROR_BAD_VALUE, buf);
Jason Sams807fdc42012-07-25 17:55:39 -0700222 mHal.state.type->dumpLOGV("type info");
223 return;
224 }
225
226 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
227}
228
Tim Murray358747a2012-11-26 13:52:04 -0800229void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
230 uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) {
231 const size_t eSize = mHal.state.elementSizeBytes;
232 const size_t lineSize = eSize * w;
233 if (!stride) {
234 stride = lineSize;
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700235 } else {
236 if ((lineSize * h) != sizeBytes) {
Jason Samsa2737932014-01-14 12:28:33 -0800237 char buf[1024];
238 sprintf(buf, "Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes);
239 rsc->setError(RS_ERROR_BAD_VALUE, buf);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700240 return;
241 }
Tim Murray358747a2012-11-26 13:52:04 -0800242 }
243
244 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
Jason Sams807fdc42012-07-25 17:55:39 -0700245}
246
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700247void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
248 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) {
249 const size_t eSize = mHal.state.elementSizeBytes;
250 const size_t lineSize = eSize * w;
251 if (!stride) {
252 stride = lineSize;
253 }
254
255 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
256
Jason Sams807fdc42012-07-25 17:55:39 -0700257}
258
Jason Sams4b45b892010-12-29 14:31:29 -0800259void Allocation::elementData(Context *rsc, uint32_t x, const void *data,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800260 uint32_t cIdx, size_t sizeBytes) {
261 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700262
Jason Samsbad80742011-03-16 16:29:28 -0700263 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700264 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
265 return;
266 }
267
Jason Samsa572aca2013-01-09 11:52:26 -0800268 if (x >= mHal.drvState.lod[0].dimX) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700269 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
270 return;
271 }
272
Jason Samsbad80742011-03-16 16:29:28 -0700273 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800274 uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
275 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700276 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
277 return;
278 }
279
Jason Samseb4fe182011-05-26 16:33:01 -0700280 rsc->mHal.funcs.allocation.elementData1D(rsc, this, x, data, cIdx, sizeBytes);
281 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700282}
283
Jason Sams4b45b892010-12-29 14:31:29 -0800284void Allocation::elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800285 const void *data, uint32_t cIdx, size_t sizeBytes) {
286 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700287
Jason Samsa572aca2013-01-09 11:52:26 -0800288 if (x >= mHal.drvState.lod[0].dimX) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700289 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
290 return;
291 }
292
Jason Samsa572aca2013-01-09 11:52:26 -0800293 if (y >= mHal.drvState.lod[0].dimY) {
Chris Wailes93d6bc82014-07-28 16:54:38 -0700294 rsc->setError(RS_ERROR_BAD_VALUE,
295 "subElementData X offset out of range.");
Jason Sams5f0c84c2010-08-31 13:50:42 -0700296 return;
297 }
298
Jason Samsbad80742011-03-16 16:29:28 -0700299 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Chris Wailes93d6bc82014-07-28 16:54:38 -0700300 rsc->setError(RS_ERROR_BAD_VALUE,
301 "subElementData component out of range.");
Jason Sams5f0c84c2010-08-31 13:50:42 -0700302 return;
303 }
304
Jason Samsbad80742011-03-16 16:29:28 -0700305 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Chris Wailes93d6bc82014-07-28 16:54:38 -0700306 uint32_t elemArraySize =
307 mHal.state.type->getElement()->getFieldArraySize(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800308 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700309 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
310 return;
311 }
312
Chris Wailes93d6bc82014-07-28 16:54:38 -0700313 rsc->mHal.funcs.allocation.elementData2D(rsc, this, x, y, data, cIdx,
314 sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700315 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700316}
317
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800318void Allocation::addProgramToDirty(const Program *p) {
Chris Wailes93d6bc82014-07-28 16:54:38 -0700319 mToDirtyList.push_back(p);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700320}
Jason Sams326e0dd2009-05-22 14:03:28 -0700321
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800322void Allocation::removeProgramToDirty(const Program *p) {
Chris Wailes93d6bc82014-07-28 16:54:38 -0700323 for (auto entryIter = mToDirtyList.begin(), endIter = mToDirtyList.end();
324 entryIter != endIter; entryIter++) {
325
326 if (p == *entryIter) {
327 mToDirtyList.erase(entryIter);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700328 return;
329 }
330 }
331 rsAssert(0);
332}
333
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800334void Allocation::dumpLOGV(const char *prefix) const {
Jason Samsc21cf402009-11-17 17:26:46 -0800335 ObjectBase::dumpLOGV(prefix);
Jason Sams48ecf6a2013-07-09 15:35:29 -0700336 char buf[1024];
Jason Samsc21cf402009-11-17 17:26:46 -0800337
Jason Sams48ecf6a2013-07-09 15:35:29 -0700338 if ((strlen(prefix) + 10) < sizeof(buf)) {
339 sprintf(buf, "%s type ", prefix);
340 if (mHal.state.type) {
341 mHal.state.type->dumpLOGV(buf);
342 }
Jason Samsc21cf402009-11-17 17:26:46 -0800343 }
Steve Block65982012011-10-20 11:56:00 +0100344 ALOGV("%s allocation ptr=%p mUsageFlags=0x04%x, mMipmapControl=0x%04x",
Chris Wailes93d6bc82014-07-28 16:54:38 -0700345 prefix, mHal.drvState.lod[0].mallocPtr, mHal.state.usageFlags,
346 mHal.state.mipmapControl);
Jason Samsc21cf402009-11-17 17:26:46 -0800347}
Jason Sams326e0dd2009-05-22 14:03:28 -0700348
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800349uint32_t Allocation::getPackedSize() const {
Jason Sams61656a72013-09-03 16:21:18 -0700350 uint32_t numItems = mHal.state.type->getCellCount();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800351 return numItems * mHal.state.type->getElement()->getSizeBytesUnpadded();
352}
353
Jason Samse3150cf2012-07-24 18:10:20 -0700354void Allocation::writePackedData(Context *rsc, const Type *type,
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800355 uint8_t *dst, const uint8_t *src, bool dstPadded) {
356 const Element *elem = type->getElement();
357 uint32_t unpaddedBytes = elem->getSizeBytesUnpadded();
358 uint32_t paddedBytes = elem->getSizeBytes();
Jason Sams61656a72013-09-03 16:21:18 -0700359 uint32_t numItems = type->getPackedSizeBytes() / paddedBytes;
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800360
361 uint32_t srcInc = !dstPadded ? paddedBytes : unpaddedBytes;
362 uint32_t dstInc = dstPadded ? paddedBytes : unpaddedBytes;
363
364 // no sub-elements
365 uint32_t fieldCount = elem->getFieldCount();
366 if (fieldCount == 0) {
367 for (uint32_t i = 0; i < numItems; i ++) {
368 memcpy(dst, src, unpaddedBytes);
369 src += srcInc;
370 dst += dstInc;
371 }
372 return;
373 }
374
375 // Cache offsets
376 uint32_t *offsetsPadded = new uint32_t[fieldCount];
377 uint32_t *offsetsUnpadded = new uint32_t[fieldCount];
378 uint32_t *sizeUnpadded = new uint32_t[fieldCount];
379
380 for (uint32_t i = 0; i < fieldCount; i++) {
381 offsetsPadded[i] = elem->getFieldOffsetBytes(i);
382 offsetsUnpadded[i] = elem->getFieldOffsetBytesUnpadded(i);
383 sizeUnpadded[i] = elem->getField(i)->getSizeBytesUnpadded();
384 }
385
386 uint32_t *srcOffsets = !dstPadded ? offsetsPadded : offsetsUnpadded;
387 uint32_t *dstOffsets = dstPadded ? offsetsPadded : offsetsUnpadded;
388
389 // complex elements, need to copy subelem after subelem
390 for (uint32_t i = 0; i < numItems; i ++) {
391 for (uint32_t fI = 0; fI < fieldCount; fI++) {
392 memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
393 }
394 src += srcInc;
395 dst += dstInc;
396 }
397
398 delete[] offsetsPadded;
399 delete[] offsetsUnpadded;
400 delete[] sizeUnpadded;
401}
402
Jason Samse3150cf2012-07-24 18:10:20 -0700403void Allocation::unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize) {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800404 const uint8_t *src = (const uint8_t*)data;
Jason Sams61a4bb72012-07-25 19:33:43 -0700405 uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800406
Jason Samse3150cf2012-07-24 18:10:20 -0700407 writePackedData(rsc, getType(), dst, src, true);
Jason Sams61a4bb72012-07-25 19:33:43 -0700408 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800409}
410
Jason Samse3150cf2012-07-24 18:10:20 -0700411void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800412 uint32_t paddedBytes = getType()->getElement()->getSizeBytes();
413 uint32_t unpaddedBytes = getType()->getElement()->getSizeBytesUnpadded();
Jason Sams61656a72013-09-03 16:21:18 -0700414 uint32_t numItems = mHal.state.type->getCellCount();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800415
Jason Sams61a4bb72012-07-25 19:33:43 -0700416 const uint8_t *src = (const uint8_t*)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800417 uint8_t *dst = new uint8_t[numItems * unpaddedBytes];
418
Jason Samse3150cf2012-07-24 18:10:20 -0700419 writePackedData(rsc, getType(), dst, src, false);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800420 stream->addByteArray(dst, getPackedSize());
421
422 delete[] dst;
Jason Sams61a4bb72012-07-25 19:33:43 -0700423 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800424}
425
Jason Samse3150cf2012-07-24 18:10:20 -0700426void Allocation::serialize(Context *rsc, OStream *stream) const {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700427 // Need to identify ourselves
428 stream->addU32((uint32_t)getClassId());
Jason Sams48ecf6a2013-07-09 15:35:29 -0700429 stream->addString(getName());
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700430
431 // First thing we need to serialize is the type object since it will be needed
432 // to initialize the class
Jason Samse3150cf2012-07-24 18:10:20 -0700433 mHal.state.type->serialize(rsc, stream);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700434
Jason Sams61656a72013-09-03 16:21:18 -0700435 uint32_t dataSize = mHal.state.type->getPackedSizeBytes();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800436 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
437 uint32_t packedSize = getPackedSize();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700438 // Write how much data we are storing
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800439 stream->addU32(packedSize);
440 if (dataSize == packedSize) {
441 // Now write the data
Jason Sams61a4bb72012-07-25 19:33:43 -0700442 stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
443 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800444 } else {
445 // Now write the data
Jason Samse3150cf2012-07-24 18:10:20 -0700446 packVec3Allocation(rsc, stream);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800447 }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700448}
449
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800450Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700451 // First make sure we are reading the correct object
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700452 RsA3DClassID classID = (RsA3DClassID)stream->loadU32();
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800453 if (classID != RS_A3D_CLASS_ID_ALLOCATION) {
Jason Samsa2737932014-01-14 12:28:33 -0800454 rsc->setError(RS_ERROR_FATAL_DRIVER,
455 "allocation loading failed due to corrupt file. (invalid id)\n");
Chris Wailes44bef6f2014-08-12 13:51:10 -0700456 return nullptr;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700457 }
458
Jason Sams48ecf6a2013-07-09 15:35:29 -0700459 const char *name = stream->loadString();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700460
461 Type *type = Type::createFromStream(rsc, stream);
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800462 if (!type) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700463 return nullptr;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700464 }
465 type->compute();
466
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800467 Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT);
468 type->decUserRef();
469
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700470 // Number of bytes we wrote out for this allocation
471 uint32_t dataSize = stream->loadU32();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800472 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
473 uint32_t packedSize = alloc->getPackedSize();
Jason Sams61656a72013-09-03 16:21:18 -0700474 if (dataSize != type->getPackedSizeBytes() &&
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800475 dataSize != packedSize) {
Jason Samsa2737932014-01-14 12:28:33 -0800476 rsc->setError(RS_ERROR_FATAL_DRIVER,
477 "allocation loading failed due to corrupt file. (invalid size)\n");
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800478 ObjectBase::checkDelete(alloc);
Jason Sams225afd32010-10-21 14:06:55 -0700479 ObjectBase::checkDelete(type);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700480 return nullptr;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700481 }
482
Jason Sams48ecf6a2013-07-09 15:35:29 -0700483 alloc->assignName(name);
Jason Sams61656a72013-09-03 16:21:18 -0700484 if (dataSize == type->getPackedSizeBytes()) {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800485 uint32_t count = dataSize / type->getElementSizeBytes();
486 // Read in all of our allocation data
487 alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
488 } else {
Jason Samse3150cf2012-07-24 18:10:20 -0700489 alloc->unpackVec3Allocation(rsc, stream->getPtr() + stream->getPos(), dataSize);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800490 }
Alex Sakhartchouke6d9fbc2010-08-11 10:30:44 -0700491 stream->reset(stream->getPos() + dataSize);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700492
493 return alloc;
494}
495
Jason Samseb4fe182011-05-26 16:33:01 -0700496void Allocation::sendDirty(const Context *rsc) const {
Jason Sams93eacc72012-12-18 14:26:57 -0800497#ifndef RS_COMPATIBILITY_LIB
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700498 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
499 mToDirtyList[ct]->forceDirty();
500 }
Jason Sams93eacc72012-12-18 14:26:57 -0800501#endif
Jason Samseb4fe182011-05-26 16:33:01 -0700502 mRSC->mHal.funcs.allocation.markDirty(rsc, this);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700503}
Jason Sams326e0dd2009-05-22 14:03:28 -0700504
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800505void Allocation::incRefs(const void *ptr, size_t ct, size_t startOff) const {
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700506 mHal.state.type->incRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700507}
508
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800509void Allocation::decRefs(const void *ptr, size_t ct, size_t startOff) const {
Alex Sakhartchouk5c4369a2011-08-12 11:30:30 -0700510 if (!mHal.state.hasReferences || !getIsScript()) {
511 return;
512 }
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700513 mHal.state.type->decRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700514}
515
Jason Samsa36c50a2014-06-17 12:06:06 -0700516void Allocation::callUpdateCacheObject(const Context *rsc, void *dstObj) const {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700517 if (rsc->mHal.funcs.allocation.updateCachedObject != nullptr) {
Jason Samsa36c50a2014-06-17 12:06:06 -0700518 rsc->mHal.funcs.allocation.updateCachedObject(rsc, this, (rs_allocation *)dstObj);
519 } else {
520 *((const void **)dstObj) = this;
521 }
522}
523
524
Jason Samsc7cec1e2011-08-18 18:01:33 -0700525void Allocation::freeChildrenUnlocked () {
Jason Sams61a4bb72012-07-25 19:33:43 -0700526 void *ptr = mRSC->mHal.funcs.allocation.lock1D(mRSC, this);
Jason Sams61656a72013-09-03 16:21:18 -0700527 decRefs(ptr, mHal.state.type->getCellCount(), 0);
Jason Sams61a4bb72012-07-25 19:33:43 -0700528 mRSC->mHal.funcs.allocation.unlock1D(mRSC, this);
Jason Samsc7cec1e2011-08-18 18:01:33 -0700529}
530
531bool Allocation::freeChildren() {
532 if (mHal.state.hasReferences) {
533 incSysRef();
534 freeChildrenUnlocked();
535 return decSysRef();
536 }
537 return false;
538}
539
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800540void Allocation::copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) {
Jason Sams96abf812010-10-05 13:32:49 -0700541}
542
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800543void Allocation::resize1D(Context *rsc, uint32_t dimX) {
Jason Samsa572aca2013-01-09 11:52:26 -0800544 uint32_t oldDimX = mHal.drvState.lod[0].dimX;
Jason Sams96abf812010-10-05 13:32:49 -0700545 if (dimX == oldDimX) {
546 return;
547 }
548
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700549 ObjectBaseRef<Type> t = mHal.state.type->cloneAndResize1D(rsc, dimX);
Jason Sams96abf812010-10-05 13:32:49 -0700550 if (dimX < oldDimX) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700551 decRefs(rsc->mHal.funcs.allocation.lock1D(rsc, this), oldDimX - dimX, dimX);
552 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Jason Sams96abf812010-10-05 13:32:49 -0700553 }
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700554 rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700555 setType(t.get());
Jason Samsbad80742011-03-16 16:29:28 -0700556 updateCache();
Jason Sams96abf812010-10-05 13:32:49 -0700557}
558
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800559void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
Jason Samsa2737932014-01-14 12:28:33 -0800560 rsc->setError(RS_ERROR_FATAL_DRIVER, "resize2d not implemented");
Jason Sams96abf812010-10-05 13:32:49 -0700561}
562
Jason Samsddceab92013-08-07 13:02:32 -0700563#ifndef RS_COMPATIBILITY_LIB
Dan Stozaf0d7aa22014-11-04 11:38:47 -0800564void Allocation::NewBufferListener::onFrameAvailable(const BufferItem& /* item */) {
Jason Samsddceab92013-08-07 13:02:32 -0700565 intptr_t ip = (intptr_t)alloc;
Tim Murraye4ed0872014-08-18 16:13:08 -0700566 rsc->sendMessageToClient(&ip, RS_MESSAGE_TO_CLIENT_NEW_BUFFER, 0, sizeof(ip), true);
Jason Samsddceab92013-08-07 13:02:32 -0700567}
568#endif
569
Jason Sams733396b2013-02-22 12:46:18 -0800570void * Allocation::getSurface(const Context *rsc) {
Jason Samsddceab92013-08-07 13:02:32 -0700571#ifndef RS_COMPATIBILITY_LIB
572 // Configure GrallocConsumer to be in asynchronous mode
Dan Stoza03c155b2014-03-12 12:06:18 -0700573 sp<IGraphicBufferProducer> bp;
574 sp<IGraphicBufferConsumer> bc;
575 BufferQueue::createBufferQueue(&bp, &bc);
Jason Samse49da132014-10-23 17:32:27 -0700576 mGrallocConsumer = new GrallocConsumer(this, bc, mHal.drvState.grallocFlags);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700577 bp->incStrong(nullptr);
Jason Samsddceab92013-08-07 13:02:32 -0700578
579 mBufferListener = new NewBufferListener();
580 mBufferListener->rsc = rsc;
581 mBufferListener->alloc = this;
582
583 mGrallocConsumer->setFrameAvailableListener(mBufferListener);
584 return bp.get();
585#else
Chris Wailes44bef6f2014-08-12 13:51:10 -0700586 return nullptr;
Jason Samsddceab92013-08-07 13:02:32 -0700587#endif
588 //return rsc->mHal.funcs.allocation.getSurface(rsc, this);
Jason Sams41e373d2012-01-13 14:01:20 -0800589}
590
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800591void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) {
592 ANativeWindow *nw = (ANativeWindow *)sur;
Jason Sams733396b2013-02-22 12:46:18 -0800593 rsc->mHal.funcs.allocation.setSurface(rsc, this, nw);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800594}
595
596void Allocation::ioSend(const Context *rsc) {
597 rsc->mHal.funcs.allocation.ioSend(rsc, this);
598}
599
600void Allocation::ioReceive(const Context *rsc) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700601 void *ptr = nullptr;
Jason Samsddceab92013-08-07 13:02:32 -0700602 size_t stride = 0;
603#ifndef RS_COMPATIBILITY_LIB
604 if (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
605 status_t ret = mGrallocConsumer->lockNextBuffer();
606
607 if (ret == OK) {
608 rsc->mHal.funcs.allocation.ioReceive(rsc, this);
609 } else if (ret == BAD_VALUE) {
610 // No new frame, don't do anything
611 } else {
612 rsc->setError(RS_ERROR_DRIVER, "Error receiving IO input buffer.");
613 }
614
615 }
616#endif
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800617}
618
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700619bool Allocation::hasSameDims(const Allocation *other) const {
620 const Type *type0 = this->getType(),
621 *type1 = other->getType();
622
623 return (type0->getCellCount() == type1->getCellCount()) &&
624 (type0->getDimLOD() == type1->getDimLOD()) &&
625 (type0->getDimFaces() == type1->getDimFaces()) &&
626 (type0->getDimYuv() == type1->getDimYuv()) &&
627 (type0->getDimX() == type1->getDimX()) &&
628 (type0->getDimY() == type1->getDimY()) &&
629 (type0->getDimZ() == type1->getDimZ());
630}
631
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800632
Jason Sams326e0dd2009-05-22 14:03:28 -0700633/////////////////
Jason Sams565ac362009-06-03 16:04:54 -0700634//
Stephen Hines6a121812011-03-01 17:34:59 -0800635
Jason Sams326e0dd2009-05-22 14:03:28 -0700636namespace android {
637namespace renderscript {
638
Jason Sams366c9c82010-12-08 16:14:36 -0800639void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
640 Allocation *a = static_cast<Allocation *>(va);
Jason Samseb4fe182011-05-26 16:33:01 -0700641 a->sendDirty(rsc);
Jason Sams366c9c82010-12-08 16:14:36 -0800642 a->syncAll(rsc, src);
643}
644
Jason Samsa2371512011-01-12 13:28:37 -0800645void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700646 Allocation *alloc = static_cast<Allocation *>(va);
647 rsc->mHal.funcs.allocation.generateMipmaps(rsc, alloc);
Jason Sams837e3882010-12-10 16:03:15 -0800648}
649
Jason Sams807fdc42012-07-25 17:55:39 -0700650void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
651 Allocation *a = static_cast<Allocation *>(va);
652 const Type * t = a->getType();
653 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700654 t->getDimX(), t->getDimY(), data, sizeBytes, 0);
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700655}
656
Jason Sams4b45b892010-12-29 14:31:29 -0800657void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700658 uint32_t count, const void *data, size_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700659 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800660 a->data(rsc, xoff, lod, count, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700661}
662
Jason Sams4b45b892010-12-29 14:31:29 -0800663void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800664 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700665 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800666 a->elementData(rsc, x, y, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700667}
668
Jason Sams4b45b892010-12-29 14:31:29 -0800669void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800670 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700671 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800672 a->elementData(rsc, x, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700673}
674
Jason Sams4b45b892010-12-29 14:31:29 -0800675void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800676 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700677 Allocation *a = static_cast<Allocation *>(va);
Tim Murray358747a2012-11-26 13:52:04 -0800678 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
Jason Sams326e0dd2009-05-22 14:03:28 -0700679}
680
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700681void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
682 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) {
683 Allocation *a = static_cast<Allocation *>(va);
684 a->data(rsc, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
685}
686
687
Jason Sams807fdc42012-07-25 17:55:39 -0700688void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
Jason Samse579df42009-08-10 14:55:26 -0700689 Allocation *a = static_cast<Allocation *>(va);
Jason Sams807fdc42012-07-25 17:55:39 -0700690 const Type * t = a->getType();
691 if(t->getDimY()) {
692 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700693 t->getDimX(), t->getDimY(), data, sizeBytes, 0);
Jason Sams807fdc42012-07-25 17:55:39 -0700694 } else {
695 a->read(rsc, 0, 0, t->getDimX(), data, sizeBytes);
696 }
697
Jason Samse579df42009-08-10 14:55:26 -0700698}
699
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800700void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) {
Jason Sams96abf812010-10-05 13:32:49 -0700701 Allocation *a = static_cast<Allocation *>(va);
702 a->resize1D(rsc, dimX);
703}
704
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800705void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
Jason Sams96abf812010-10-05 13:32:49 -0700706 Allocation *a = static_cast<Allocation *>(va);
707 a->resize2D(rsc, dimX, dimY);
708}
709
Jason Samsc975cf42011-04-28 18:26:48 -0700710RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype,
Stephen Hines8f615d62013-12-20 12:23:32 -0800711 RsAllocationMipmapControl mipmaps,
Tim Murray099bc262013-03-20 16:54:03 -0700712 uint32_t usages, uintptr_t ptr) {
Stephen Hines8f615d62013-12-20 12:23:32 -0800713 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
Jason Samseb4fe182011-05-26 16:33:01 -0700714 if (!alloc) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700715 return nullptr;
Jason Samseb4fe182011-05-26 16:33:01 -0700716 }
Jason Samsf0c1df42010-10-26 13:09:17 -0700717 alloc->incUserRef();
718 return alloc;
719}
720
Jason Samsc975cf42011-04-28 18:26:48 -0700721RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype,
Stephen Hines8f615d62013-12-20 12:23:32 -0800722 RsAllocationMipmapControl mipmaps,
Jason Sams807fdc42012-07-25 17:55:39 -0700723 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800724 Type *t = static_cast<Type *>(vtype);
Jason Samsf0c1df42010-10-26 13:09:17 -0700725
Stephen Hines8f615d62013-12-20 12:23:32 -0800726 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
Jason Samsf0c1df42010-10-26 13:09:17 -0700727 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700728 if (texAlloc == nullptr) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000729 ALOGE("Memory allocation failure");
Chris Wailes44bef6f2014-08-12 13:51:10 -0700730 return nullptr;
Jason Samsf0c1df42010-10-26 13:09:17 -0700731 }
732
Jason Sams807fdc42012-07-25 17:55:39 -0700733 texAlloc->data(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
Tim Murray60c27962013-02-07 16:15:23 -0800734 t->getDimX(), t->getDimY(), data, sizeBytes, 0);
Stephen Hines8f615d62013-12-20 12:23:32 -0800735 if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700736 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700737 }
738
Jason Samseb4fe182011-05-26 16:33:01 -0700739 texAlloc->sendDirty(rsc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700740 return texAlloc;
741}
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800742
Jason Samsc975cf42011-04-28 18:26:48 -0700743RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype,
Stephen Hines8f615d62013-12-20 12:23:32 -0800744 RsAllocationMipmapControl mipmaps,
Jason Sams807fdc42012-07-25 17:55:39 -0700745 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800746 Type *t = static_cast<Type *>(vtype);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800747
748 // Cubemap allocation's faces should be Width by Width each.
749 // Source data should have 6 * Width by Width pixels
750 // Error checking is done in the java layer
Stephen Hines8f615d62013-12-20 12:23:32 -0800751 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800752 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700753 if (texAlloc == nullptr) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000754 ALOGE("Memory allocation failure");
Chris Wailes44bef6f2014-08-12 13:51:10 -0700755 return nullptr;
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800756 }
757
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800758 uint32_t faceSize = t->getDimX();
759 uint32_t strideBytes = faceSize * 6 * t->getElementSizeBytes();
760 uint32_t copySize = faceSize * t->getElementSizeBytes();
761
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800762 uint8_t *sourcePtr = (uint8_t*)data;
Jason Sams366c9c82010-12-08 16:14:36 -0800763 for (uint32_t face = 0; face < 6; face ++) {
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800764 for (uint32_t dI = 0; dI < faceSize; dI ++) {
Jason Sams807fdc42012-07-25 17:55:39 -0700765 texAlloc->data(rsc, 0, dI, 0, (RsAllocationCubemapFace)face,
Tim Murray60c27962013-02-07 16:15:23 -0800766 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize, 0);
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800767 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800768
Jason Sams366c9c82010-12-08 16:14:36 -0800769 // Move the data pointer to the next cube face
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800770 sourcePtr += copySize;
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800771 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800772
Stephen Hines8f615d62013-12-20 12:23:32 -0800773 if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700774 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800775 }
776
Jason Samseb4fe182011-05-26 16:33:01 -0700777 texAlloc->sendDirty(rsc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800778 return texAlloc;
779}
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800780
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700781void rsi_AllocationCopy2DRange(Context *rsc,
782 RsAllocation dstAlloc,
783 uint32_t dstXoff, uint32_t dstYoff,
784 uint32_t dstMip, uint32_t dstFace,
785 uint32_t width, uint32_t height,
786 RsAllocation srcAlloc,
787 uint32_t srcXoff, uint32_t srcYoff,
788 uint32_t srcMip, uint32_t srcFace) {
789 Allocation *dst = static_cast<Allocation *>(dstAlloc);
790 Allocation *src= static_cast<Allocation *>(srcAlloc);
791 rsc->mHal.funcs.allocation.allocData2D(rsc, dst, dstXoff, dstYoff, dstMip,
792 (RsAllocationCubemapFace)dstFace,
793 width, height,
794 src, srcXoff, srcYoff,srcMip,
795 (RsAllocationCubemapFace)srcFace);
796}
797
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700798void rsi_AllocationCopy3DRange(Context *rsc,
799 RsAllocation dstAlloc,
800 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
801 uint32_t dstMip,
802 uint32_t width, uint32_t height, uint32_t depth,
803 RsAllocation srcAlloc,
804 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
805 uint32_t srcMip) {
806 Allocation *dst = static_cast<Allocation *>(dstAlloc);
807 Allocation *src= static_cast<Allocation *>(srcAlloc);
808 rsc->mHal.funcs.allocation.allocData3D(rsc, dst, dstXoff, dstYoff, dstZoff, dstMip,
809 width, height, depth,
810 src, srcXoff, srcYoff, srcZoff, srcMip);
811}
812
813
Jason Sams733396b2013-02-22 12:46:18 -0800814void * rsi_AllocationGetSurface(Context *rsc, RsAllocation valloc) {
Jason Sams41e373d2012-01-13 14:01:20 -0800815 Allocation *alloc = static_cast<Allocation *>(valloc);
Jason Sams733396b2013-02-22 12:46:18 -0800816 void *s = alloc->getSurface(rsc);
817 return s;
Jason Sams3522f402012-03-23 11:47:26 -0700818}
819
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800820void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) {
821 Allocation *alloc = static_cast<Allocation *>(valloc);
822 alloc->setSurface(rsc, sur);
823}
824
825void rsi_AllocationIoSend(Context *rsc, RsAllocation valloc) {
826 Allocation *alloc = static_cast<Allocation *>(valloc);
827 alloc->ioSend(rsc);
828}
829
830void rsi_AllocationIoReceive(Context *rsc, RsAllocation valloc) {
831 Allocation *alloc = static_cast<Allocation *>(valloc);
832 alloc->ioReceive(rsc);
833}
834
Stephen Hinesaf7373f2014-09-11 00:58:18 -0700835void *rsi_AllocationGetPointer(Context *rsc, RsAllocation valloc,
Jason Samsb8a94e22014-02-24 17:52:32 -0800836 uint32_t lod, RsAllocationCubemapFace face,
837 uint32_t z, uint32_t array, size_t *stride, size_t strideLen) {
838 Allocation *alloc = static_cast<Allocation *>(valloc);
Tim Murray0e61af92014-02-26 13:28:52 -0800839 rsAssert(strideLen == sizeof(size_t));
Jason Samsb8a94e22014-02-24 17:52:32 -0800840
Stephen Hinesaf7373f2014-09-11 00:58:18 -0700841 return alloc->getPointer(rsc, lod, face, z, array, stride);
Jason Samsb8a94e22014-02-24 17:52:32 -0800842}
843
Tim Murray509ea5c2012-11-13 11:56:40 -0800844void rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
845 uint32_t count, void *data, size_t sizeBytes) {
846 Allocation *a = static_cast<Allocation *>(va);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700847 rsc->mHal.funcs.allocation.read1D(rsc, a, xoff, lod, count, data, sizeBytes);
Tim Murray509ea5c2012-11-13 11:56:40 -0800848}
849
Tim Murray7b3e3092012-11-16 13:32:24 -0800850void rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
851 uint32_t lod, RsAllocationCubemapFace face, uint32_t w,
Tim Murray358747a2012-11-26 13:52:04 -0800852 uint32_t h, void *data, size_t sizeBytes, size_t stride) {
Tim Murray7b3e3092012-11-16 13:32:24 -0800853 Allocation *a = static_cast<Allocation *>(va);
Tim Murray358747a2012-11-26 13:52:04 -0800854 a->read(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
Tim Murray7b3e3092012-11-16 13:32:24 -0800855}
856
Jason Samscfea6c12015-02-09 12:50:22 -0800857RsAllocation rsi_AllocationAdapterCreate(Context *rsc, RsType vwindow, RsAllocation vbase) {
858
859
860 Allocation * alloc = Allocation::createAdapter(rsc,
861 static_cast<Allocation *>(vbase), static_cast<Type *>(vwindow));
862 if (!alloc) {
863 return nullptr;
864 }
865 alloc->incUserRef();
866 return alloc;
867}
868
869void rsi_AllocationAdapterOffset(Context *rsc, RsAllocation va, const uint32_t *offsets, size_t len) {
870}
871
872
Jason Samsc975cf42011-04-28 18:26:48 -0700873}
874}
875
Tim Murrayc2ce7072013-07-17 18:38:53 -0700876extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
Jason Samsc975cf42011-04-28 18:26:48 -0700877 Allocation *a = static_cast<Allocation *>(va);
878 a->getType()->incUserRef();
879
880 return a->getType();
881}