blob: ca747e7ea429192dd3dc10922b97efb8ce35f1fa [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
Stephen Hines6ae039b2012-01-18 18:46:27 -08002 * Copyright (C) 2009-2012 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
Jason Sams7ac2a4d2012-02-15 12:04:24 -080022#include "system/window.h"
Jason Sams3522f402012-03-23 11:47:26 -070023#include "gui/SurfaceTexture.h"
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -070024
Jason Sams326e0dd2009-05-22 14:03:28 -070025using namespace android;
26using namespace android::renderscript;
27
Alex Sakhartchouka2aab8b2010-12-15 09:59:58 -080028Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080029 RsAllocationMipmapControl mc, void * ptr)
Alex Sakhartchouka2aab8b2010-12-15 09:59:58 -080030 : ObjectBase(rsc) {
Jason Samsfa84da22010-03-01 15:31:04 -080031
Jason Samseb4fe182011-05-26 16:33:01 -070032 memset(&mHal, 0, sizeof(mHal));
33 mHal.state.mipmapControl = RS_ALLOCATION_MIPMAP_NONE;
Jason Samsbad80742011-03-16 16:29:28 -070034 mHal.state.usageFlags = usages;
35 mHal.state.mipmapControl = mc;
Jason Sams366c9c82010-12-08 16:14:36 -080036
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070037 setType(type);
Jason Samsbad80742011-03-16 16:29:28 -070038 updateCache();
39}
Jason Samsfa84da22010-03-01 15:31:04 -080040
Jason Samseb4fe182011-05-26 16:33:01 -070041Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080042 RsAllocationMipmapControl mc, void * ptr) {
43 Allocation *a = new Allocation(rsc, type, usages, mc, ptr);
Jason Samseb4fe182011-05-26 16:33:01 -070044
45 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
46 rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
47 delete a;
48 return NULL;
49 }
Jason Sams7ac2a4d2012-02-15 12:04:24 -080050
Jason Samseb4fe182011-05-26 16:33:01 -070051 return a;
52}
53
Jason Samsbad80742011-03-16 16:29:28 -070054void Allocation::updateCache() {
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070055 const Type *type = mHal.state.type;
Jason Samsbad80742011-03-16 16:29:28 -070056 mHal.state.dimensionX = type->getDimX();
57 mHal.state.dimensionY = type->getDimY();
58 mHal.state.dimensionZ = type->getDimZ();
59 mHal.state.hasFaces = type->getDimFaces();
60 mHal.state.hasMipmaps = type->getDimLOD();
61 mHal.state.elementSizeBytes = type->getElementSizeBytes();
62 mHal.state.hasReferences = mHal.state.type->getElement()->getHasReferences();
Jason Sams61462382012-08-29 11:57:40 -070063 mHal.state.eType = mHal.state.type->getElement()->getType();
Jason Sams326e0dd2009-05-22 14:03:28 -070064}
65
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080066Allocation::~Allocation() {
Jason Samsc7cec1e2011-08-18 18:01:33 -070067 freeChildrenUnlocked();
Jason Sams3522f402012-03-23 11:47:26 -070068 setSurfaceTexture(mRSC, NULL);
Jason Samseb4fe182011-05-26 16:33:01 -070069 mRSC->mHal.funcs.allocation.destroy(mRSC, this);
Jason Sams326e0dd2009-05-22 14:03:28 -070070}
71
Jason Sams366c9c82010-12-08 16:14:36 -080072void Allocation::syncAll(Context *rsc, RsAllocationUsageType src) {
Jason Samseb4fe182011-05-26 16:33:01 -070073 rsc->mHal.funcs.allocation.syncAll(rsc, this, src);
Jason Samscf4c7c92009-12-14 12:57:40 -080074}
75
Jason Sams4b45b892010-12-29 14:31:29 -080076void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod,
Stephen Hines6ae039b2012-01-18 18:46:27 -080077 uint32_t count, const void *data, size_t sizeBytes) {
78 const size_t eSize = mHal.state.type->getElementSizeBytes();
Jason Sams9397e302009-08-27 20:23:34 -070079
Jason Samseb4fe182011-05-26 16:33:01 -070080 if ((count * eSize) != sizeBytes) {
Stephen Hines6ae039b2012-01-18 18:46:27 -080081 ALOGE("Allocation::subData called with mismatched size expected %zu, got %zu",
Jason Samseb4fe182011-05-26 16:33:01 -070082 (count * eSize), sizeBytes);
Jason Samsbad80742011-03-16 16:29:28 -070083 mHal.state.type->dumpLOGV("type info");
Jason Sams9397e302009-08-27 20:23:34 -070084 return;
85 }
Jason Samse3929c92010-08-09 18:13:33 -070086
Jason Samseb4fe182011-05-26 16:33:01 -070087 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
88 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070089}
90
Jason Sams4b45b892010-12-29 14:31:29 -080091void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -080092 uint32_t w, uint32_t h, const void *data, size_t sizeBytes) {
93 const size_t eSize = mHal.state.elementSizeBytes;
94 const size_t lineSize = eSize * w;
Jason Sams326e0dd2009-05-22 14:03:28 -070095
Steve Blockaf12ac62012-01-06 19:20:56 +000096 //ALOGE("data2d %p, %i %i %i %i %i %i %p %i", this, xoff, yoff, lod, face, w, h, data, sizeBytes);
Jason Sams9397e302009-08-27 20:23:34 -070097
Jason Samsa2371512011-01-12 13:28:37 -080098 if ((lineSize * h) != sizeBytes) {
Stephen Hines6ae039b2012-01-18 18:46:27 -080099 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes);
Jason Sams9397e302009-08-27 20:23:34 -0700100 rsAssert(!"Allocation::subData called with mismatched size");
101 return;
102 }
103
Jason Samseb4fe182011-05-26 16:33:01 -0700104 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
105 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -0700106}
107
Jason Sams236385b2011-01-12 14:53:25 -0800108void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
109 uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800110 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700111}
112
Jason Sams807fdc42012-07-25 17:55:39 -0700113void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod,
114 uint32_t count, void *data, size_t sizeBytes) {
115 const size_t eSize = mHal.state.type->getElementSizeBytes();
116
117 if ((count * eSize) != sizeBytes) {
118 ALOGE("Allocation::read called with mismatched size expected %zu, got %zu",
119 (count * eSize), sizeBytes);
120 mHal.state.type->dumpLOGV("type info");
121 return;
122 }
123
124 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
125}
126
127void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
128 uint32_t w, uint32_t h, void *data, size_t sizeBytes) {
129 const size_t eSize = mHal.state.elementSizeBytes;
130 const size_t lineSize = eSize * w;
131
132 if ((lineSize * h) != sizeBytes) {
133 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes);
134 rsAssert(!"Allocation::read called with mismatched size");
135 return;
136 }
137
138 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
139}
140
141void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
142 uint32_t lod, RsAllocationCubemapFace face,
143 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes) {
144}
145
Jason Sams4b45b892010-12-29 14:31:29 -0800146void Allocation::elementData(Context *rsc, uint32_t x, const void *data,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800147 uint32_t cIdx, size_t sizeBytes) {
148 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700149
Jason Samsbad80742011-03-16 16:29:28 -0700150 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000151 ALOGE("Error Allocation::subElementData component %i out of range.", cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700152 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
153 return;
154 }
155
Jason Samsbad80742011-03-16 16:29:28 -0700156 if (x >= mHal.state.dimensionX) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000157 ALOGE("Error Allocation::subElementData X offset %i out of range.", x);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700158 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
159 return;
160 }
161
Jason Samsbad80742011-03-16 16:29:28 -0700162 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800163 uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
164 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Stephen Hines6ae039b2012-01-18 18:46:27 -0800165 ALOGE("Error Allocation::subElementData data size %zu does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700166 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
167 return;
168 }
169
Jason Samseb4fe182011-05-26 16:33:01 -0700170 rsc->mHal.funcs.allocation.elementData1D(rsc, this, x, data, cIdx, sizeBytes);
171 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700172}
173
Jason Sams4b45b892010-12-29 14:31:29 -0800174void Allocation::elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800175 const void *data, uint32_t cIdx, size_t sizeBytes) {
176 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700177
Jason Samsbad80742011-03-16 16:29:28 -0700178 if (x >= mHal.state.dimensionX) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000179 ALOGE("Error Allocation::subElementData X offset %i out of range.", x);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700180 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
181 return;
182 }
183
Jason Samsbad80742011-03-16 16:29:28 -0700184 if (y >= mHal.state.dimensionY) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000185 ALOGE("Error Allocation::subElementData X offset %i out of range.", x);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700186 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
187 return;
188 }
189
Jason Samsbad80742011-03-16 16:29:28 -0700190 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000191 ALOGE("Error Allocation::subElementData component %i out of range.", cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700192 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
193 return;
194 }
195
Jason Samsbad80742011-03-16 16:29:28 -0700196 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800197 uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
198 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Stephen Hines6ae039b2012-01-18 18:46:27 -0800199 ALOGE("Error Allocation::subElementData data size %zu does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700200 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
201 return;
202 }
203
Jason Samseb4fe182011-05-26 16:33:01 -0700204 rsc->mHal.funcs.allocation.elementData2D(rsc, this, x, y, data, cIdx, sizeBytes);
205 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700206}
207
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800208void Allocation::addProgramToDirty(const Program *p) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700209 mToDirtyList.push(p);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700210}
Jason Sams326e0dd2009-05-22 14:03:28 -0700211
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800212void Allocation::removeProgramToDirty(const Program *p) {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700213 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
214 if (mToDirtyList[ct] == p) {
215 mToDirtyList.removeAt(ct);
216 return;
217 }
218 }
219 rsAssert(0);
220}
221
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800222void Allocation::dumpLOGV(const char *prefix) const {
Jason Samsc21cf402009-11-17 17:26:46 -0800223 ObjectBase::dumpLOGV(prefix);
224
225 String8 s(prefix);
226 s.append(" type ");
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700227 if (mHal.state.type) {
Jason Samsbad80742011-03-16 16:29:28 -0700228 mHal.state.type->dumpLOGV(s.string());
Jason Samsc21cf402009-11-17 17:26:46 -0800229 }
230
Steve Block65982012011-10-20 11:56:00 +0100231 ALOGV("%s allocation ptr=%p mUsageFlags=0x04%x, mMipmapControl=0x%04x",
Jason Sams61a4bb72012-07-25 19:33:43 -0700232 prefix, mHal.drvState.mallocPtrLOD0, mHal.state.usageFlags, mHal.state.mipmapControl);
Jason Samsc21cf402009-11-17 17:26:46 -0800233}
Jason Sams326e0dd2009-05-22 14:03:28 -0700234
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800235uint32_t Allocation::getPackedSize() const {
236 uint32_t numItems = mHal.state.type->getSizeBytes() / mHal.state.type->getElementSizeBytes();
237 return numItems * mHal.state.type->getElement()->getSizeBytesUnpadded();
238}
239
Jason Samse3150cf2012-07-24 18:10:20 -0700240void Allocation::writePackedData(Context *rsc, const Type *type,
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800241 uint8_t *dst, const uint8_t *src, bool dstPadded) {
242 const Element *elem = type->getElement();
243 uint32_t unpaddedBytes = elem->getSizeBytesUnpadded();
244 uint32_t paddedBytes = elem->getSizeBytes();
245 uint32_t numItems = type->getSizeBytes() / paddedBytes;
246
247 uint32_t srcInc = !dstPadded ? paddedBytes : unpaddedBytes;
248 uint32_t dstInc = dstPadded ? paddedBytes : unpaddedBytes;
249
250 // no sub-elements
251 uint32_t fieldCount = elem->getFieldCount();
252 if (fieldCount == 0) {
253 for (uint32_t i = 0; i < numItems; i ++) {
254 memcpy(dst, src, unpaddedBytes);
255 src += srcInc;
256 dst += dstInc;
257 }
258 return;
259 }
260
261 // Cache offsets
262 uint32_t *offsetsPadded = new uint32_t[fieldCount];
263 uint32_t *offsetsUnpadded = new uint32_t[fieldCount];
264 uint32_t *sizeUnpadded = new uint32_t[fieldCount];
265
266 for (uint32_t i = 0; i < fieldCount; i++) {
267 offsetsPadded[i] = elem->getFieldOffsetBytes(i);
268 offsetsUnpadded[i] = elem->getFieldOffsetBytesUnpadded(i);
269 sizeUnpadded[i] = elem->getField(i)->getSizeBytesUnpadded();
270 }
271
272 uint32_t *srcOffsets = !dstPadded ? offsetsPadded : offsetsUnpadded;
273 uint32_t *dstOffsets = dstPadded ? offsetsPadded : offsetsUnpadded;
274
275 // complex elements, need to copy subelem after subelem
276 for (uint32_t i = 0; i < numItems; i ++) {
277 for (uint32_t fI = 0; fI < fieldCount; fI++) {
278 memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
279 }
280 src += srcInc;
281 dst += dstInc;
282 }
283
284 delete[] offsetsPadded;
285 delete[] offsetsUnpadded;
286 delete[] sizeUnpadded;
287}
288
Jason Samse3150cf2012-07-24 18:10:20 -0700289void Allocation::unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize) {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800290 const uint8_t *src = (const uint8_t*)data;
Jason Sams61a4bb72012-07-25 19:33:43 -0700291 uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800292
Jason Samse3150cf2012-07-24 18:10:20 -0700293 writePackedData(rsc, getType(), dst, src, true);
Jason Sams61a4bb72012-07-25 19:33:43 -0700294 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800295}
296
Jason Samse3150cf2012-07-24 18:10:20 -0700297void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800298 uint32_t paddedBytes = getType()->getElement()->getSizeBytes();
299 uint32_t unpaddedBytes = getType()->getElement()->getSizeBytesUnpadded();
300 uint32_t numItems = mHal.state.type->getSizeBytes() / paddedBytes;
301
Jason Sams61a4bb72012-07-25 19:33:43 -0700302 const uint8_t *src = (const uint8_t*)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800303 uint8_t *dst = new uint8_t[numItems * unpaddedBytes];
304
Jason Samse3150cf2012-07-24 18:10:20 -0700305 writePackedData(rsc, getType(), dst, src, false);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800306 stream->addByteArray(dst, getPackedSize());
307
308 delete[] dst;
Jason Sams61a4bb72012-07-25 19:33:43 -0700309 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800310}
311
Jason Samse3150cf2012-07-24 18:10:20 -0700312void Allocation::serialize(Context *rsc, OStream *stream) const {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700313 // Need to identify ourselves
314 stream->addU32((uint32_t)getClassId());
315
316 String8 name(getName());
317 stream->addString(&name);
318
319 // First thing we need to serialize is the type object since it will be needed
320 // to initialize the class
Jason Samse3150cf2012-07-24 18:10:20 -0700321 mHal.state.type->serialize(rsc, stream);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700322
Jason Samsbad80742011-03-16 16:29:28 -0700323 uint32_t dataSize = mHal.state.type->getSizeBytes();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800324 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
325 uint32_t packedSize = getPackedSize();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700326 // Write how much data we are storing
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800327 stream->addU32(packedSize);
328 if (dataSize == packedSize) {
329 // Now write the data
Jason Sams61a4bb72012-07-25 19:33:43 -0700330 stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
331 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800332 } else {
333 // Now write the data
Jason Samse3150cf2012-07-24 18:10:20 -0700334 packVec3Allocation(rsc, stream);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800335 }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700336}
337
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800338Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700339 // First make sure we are reading the correct object
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700340 RsA3DClassID classID = (RsA3DClassID)stream->loadU32();
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800341 if (classID != RS_A3D_CLASS_ID_ALLOCATION) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000342 ALOGE("allocation loading skipped due to invalid class id\n");
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700343 return NULL;
344 }
345
346 String8 name;
347 stream->loadString(&name);
348
349 Type *type = Type::createFromStream(rsc, stream);
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800350 if (!type) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700351 return NULL;
352 }
353 type->compute();
354
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800355 Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT);
356 type->decUserRef();
357
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700358 // Number of bytes we wrote out for this allocation
359 uint32_t dataSize = stream->loadU32();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800360 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
361 uint32_t packedSize = alloc->getPackedSize();
362 if (dataSize != type->getSizeBytes() &&
363 dataSize != packedSize) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000364 ALOGE("failed to read allocation because numbytes written is not the same loaded type wants\n");
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800365 ObjectBase::checkDelete(alloc);
Jason Sams225afd32010-10-21 14:06:55 -0700366 ObjectBase::checkDelete(type);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700367 return NULL;
368 }
369
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700370 alloc->setName(name.string(), name.size());
371
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800372 if (dataSize == type->getSizeBytes()) {
373 uint32_t count = dataSize / type->getElementSizeBytes();
374 // Read in all of our allocation data
375 alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
376 } else {
Jason Samse3150cf2012-07-24 18:10:20 -0700377 alloc->unpackVec3Allocation(rsc, stream->getPtr() + stream->getPos(), dataSize);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800378 }
Alex Sakhartchouke6d9fbc2010-08-11 10:30:44 -0700379 stream->reset(stream->getPos() + dataSize);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700380
381 return alloc;
382}
383
Jason Samseb4fe182011-05-26 16:33:01 -0700384void Allocation::sendDirty(const Context *rsc) const {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700385 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
386 mToDirtyList[ct]->forceDirty();
387 }
Jason Samseb4fe182011-05-26 16:33:01 -0700388 mRSC->mHal.funcs.allocation.markDirty(rsc, this);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700389}
Jason Sams326e0dd2009-05-22 14:03:28 -0700390
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800391void Allocation::incRefs(const void *ptr, size_t ct, size_t startOff) const {
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700392 mHal.state.type->incRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700393}
394
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800395void Allocation::decRefs(const void *ptr, size_t ct, size_t startOff) const {
Alex Sakhartchouk5c4369a2011-08-12 11:30:30 -0700396 if (!mHal.state.hasReferences || !getIsScript()) {
397 return;
398 }
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700399 mHal.state.type->decRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700400}
401
Jason Samsc7cec1e2011-08-18 18:01:33 -0700402void Allocation::freeChildrenUnlocked () {
Jason Sams61a4bb72012-07-25 19:33:43 -0700403 void *ptr = mRSC->mHal.funcs.allocation.lock1D(mRSC, this);
404 decRefs(ptr, mHal.state.type->getSizeBytes() / mHal.state.type->getElementSizeBytes(), 0);
405 mRSC->mHal.funcs.allocation.unlock1D(mRSC, this);
Jason Samsc7cec1e2011-08-18 18:01:33 -0700406}
407
408bool Allocation::freeChildren() {
409 if (mHal.state.hasReferences) {
410 incSysRef();
411 freeChildrenUnlocked();
412 return decSysRef();
413 }
414 return false;
415}
416
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800417void Allocation::copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) {
Jason Sams96abf812010-10-05 13:32:49 -0700418}
419
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800420void Allocation::resize1D(Context *rsc, uint32_t dimX) {
Jason Samsbad80742011-03-16 16:29:28 -0700421 uint32_t oldDimX = mHal.state.dimensionX;
Jason Sams96abf812010-10-05 13:32:49 -0700422 if (dimX == oldDimX) {
423 return;
424 }
425
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700426 ObjectBaseRef<Type> t = mHal.state.type->cloneAndResize1D(rsc, dimX);
Jason Sams96abf812010-10-05 13:32:49 -0700427 if (dimX < oldDimX) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700428 decRefs(rsc->mHal.funcs.allocation.lock1D(rsc, this), oldDimX - dimX, dimX);
429 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Jason Sams96abf812010-10-05 13:32:49 -0700430 }
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700431 rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700432 setType(t.get());
Jason Samsbad80742011-03-16 16:29:28 -0700433 updateCache();
Jason Sams96abf812010-10-05 13:32:49 -0700434}
435
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800436void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000437 ALOGE("not implemented");
Jason Sams96abf812010-10-05 13:32:49 -0700438}
439
Jason Sams41e373d2012-01-13 14:01:20 -0800440int32_t Allocation::getSurfaceTextureID(const Context *rsc) {
441 int32_t id = rsc->mHal.funcs.allocation.initSurfaceTexture(rsc, this);
442 mHal.state.surfaceTextureID = id;
443 return id;
444}
445
Jason Sams3522f402012-03-23 11:47:26 -0700446void Allocation::setSurfaceTexture(const Context *rsc, SurfaceTexture *st) {
447 if(st != mHal.state.surfaceTexture) {
448 if(mHal.state.surfaceTexture != NULL) {
449 mHal.state.surfaceTexture->decStrong(NULL);
450 }
451 mHal.state.surfaceTexture = st;
452 if(mHal.state.surfaceTexture != NULL) {
453 mHal.state.surfaceTexture->incStrong(NULL);
454 }
455 }
456}
457
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800458void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) {
459 ANativeWindow *nw = (ANativeWindow *)sur;
460 ANativeWindow *old = mHal.state.wndSurface;
461 if (nw) {
462 nw->incStrong(NULL);
463 }
464 rsc->mHal.funcs.allocation.setSurfaceTexture(rsc, this, nw);
465 mHal.state.wndSurface = nw;
466 if (old) {
467 old->decStrong(NULL);
468 }
469}
470
471void Allocation::ioSend(const Context *rsc) {
472 rsc->mHal.funcs.allocation.ioSend(rsc, this);
473}
474
475void Allocation::ioReceive(const Context *rsc) {
476 rsc->mHal.funcs.allocation.ioReceive(rsc, this);
477}
478
479
Jason Sams326e0dd2009-05-22 14:03:28 -0700480/////////////////
Jason Sams565ac362009-06-03 16:04:54 -0700481//
Stephen Hines6a121812011-03-01 17:34:59 -0800482
Jason Sams326e0dd2009-05-22 14:03:28 -0700483namespace android {
484namespace renderscript {
485
Jason Sams366c9c82010-12-08 16:14:36 -0800486void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
487 Allocation *a = static_cast<Allocation *>(va);
Jason Samseb4fe182011-05-26 16:33:01 -0700488 a->sendDirty(rsc);
Jason Sams366c9c82010-12-08 16:14:36 -0800489 a->syncAll(rsc, src);
490}
491
Jason Samsa2371512011-01-12 13:28:37 -0800492void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700493 Allocation *alloc = static_cast<Allocation *>(va);
494 rsc->mHal.funcs.allocation.generateMipmaps(rsc, alloc);
Jason Sams837e3882010-12-10 16:03:15 -0800495}
496
Jason Sams807fdc42012-07-25 17:55:39 -0700497void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
498 Allocation *a = static_cast<Allocation *>(va);
499 const Type * t = a->getType();
500 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
501 t->getDimX(), t->getDimY(), data, sizeBytes);
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700502}
503
Jason Sams4b45b892010-12-29 14:31:29 -0800504void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700505 uint32_t count, const void *data, size_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700506 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800507 a->data(rsc, xoff, lod, count, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700508}
509
Jason Sams4b45b892010-12-29 14:31:29 -0800510void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800511 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700512 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800513 a->elementData(rsc, x, y, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700514}
515
Jason Sams4b45b892010-12-29 14:31:29 -0800516void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800517 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700518 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800519 a->elementData(rsc, x, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700520}
521
Jason Sams4b45b892010-12-29 14:31:29 -0800522void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700523 uint32_t w, uint32_t h, const void *data, size_t sizeBytes) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700524 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800525 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700526}
527
Jason Sams807fdc42012-07-25 17:55:39 -0700528void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
Jason Samse579df42009-08-10 14:55:26 -0700529 Allocation *a = static_cast<Allocation *>(va);
Jason Sams807fdc42012-07-25 17:55:39 -0700530 const Type * t = a->getType();
531 if(t->getDimY()) {
532 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
533 t->getDimX(), t->getDimY(), data, sizeBytes);
534 } else {
535 a->read(rsc, 0, 0, t->getDimX(), data, sizeBytes);
536 }
537
Jason Samse579df42009-08-10 14:55:26 -0700538}
539
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800540void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) {
Jason Sams96abf812010-10-05 13:32:49 -0700541 Allocation *a = static_cast<Allocation *>(va);
542 a->resize1D(rsc, dimX);
543}
544
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800545void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
Jason Sams96abf812010-10-05 13:32:49 -0700546 Allocation *a = static_cast<Allocation *>(va);
547 a->resize2D(rsc, dimX, dimY);
548}
549
Jason Samsc975cf42011-04-28 18:26:48 -0700550RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype,
551 RsAllocationMipmapControl mips,
Jason Sams179e9a42011-11-23 15:02:15 -0800552 uint32_t usages, uint32_t ptr) {
553 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void *)ptr);
Jason Samseb4fe182011-05-26 16:33:01 -0700554 if (!alloc) {
555 return NULL;
556 }
Jason Samsf0c1df42010-10-26 13:09:17 -0700557 alloc->incUserRef();
558 return alloc;
559}
560
Jason Samsc975cf42011-04-28 18:26:48 -0700561RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype,
562 RsAllocationMipmapControl mips,
Jason Sams807fdc42012-07-25 17:55:39 -0700563 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800564 Type *t = static_cast<Type *>(vtype);
Jason Samsf0c1df42010-10-26 13:09:17 -0700565
Jason Sams179e9a42011-11-23 15:02:15 -0800566 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
Jason Samsf0c1df42010-10-26 13:09:17 -0700567 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
568 if (texAlloc == NULL) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000569 ALOGE("Memory allocation failure");
Jason Samsf0c1df42010-10-26 13:09:17 -0700570 return NULL;
571 }
572
Jason Sams807fdc42012-07-25 17:55:39 -0700573 texAlloc->data(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
574 t->getDimX(), t->getDimY(), data, sizeBytes);
Jason Samsebc50192010-12-13 15:32:35 -0800575 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700576 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700577 }
578
Jason Samseb4fe182011-05-26 16:33:01 -0700579 texAlloc->sendDirty(rsc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700580 return texAlloc;
581}
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800582
Jason Samsc975cf42011-04-28 18:26:48 -0700583RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype,
584 RsAllocationMipmapControl mips,
Jason Sams807fdc42012-07-25 17:55:39 -0700585 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800586 Type *t = static_cast<Type *>(vtype);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800587
588 // Cubemap allocation's faces should be Width by Width each.
589 // Source data should have 6 * Width by Width pixels
590 // Error checking is done in the java layer
Jason Sams179e9a42011-11-23 15:02:15 -0800591 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800592 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
593 if (texAlloc == NULL) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000594 ALOGE("Memory allocation failure");
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800595 return NULL;
596 }
597
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800598 uint32_t faceSize = t->getDimX();
599 uint32_t strideBytes = faceSize * 6 * t->getElementSizeBytes();
600 uint32_t copySize = faceSize * t->getElementSizeBytes();
601
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800602 uint8_t *sourcePtr = (uint8_t*)data;
Jason Sams366c9c82010-12-08 16:14:36 -0800603 for (uint32_t face = 0; face < 6; face ++) {
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800604 for (uint32_t dI = 0; dI < faceSize; dI ++) {
Jason Sams807fdc42012-07-25 17:55:39 -0700605 texAlloc->data(rsc, 0, dI, 0, (RsAllocationCubemapFace)face,
606 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize);
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800607 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800608
Jason Sams366c9c82010-12-08 16:14:36 -0800609 // Move the data pointer to the next cube face
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800610 sourcePtr += copySize;
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800611 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800612
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800613 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700614 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800615 }
616
Jason Samseb4fe182011-05-26 16:33:01 -0700617 texAlloc->sendDirty(rsc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800618 return texAlloc;
619}
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800620
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700621void rsi_AllocationCopy2DRange(Context *rsc,
622 RsAllocation dstAlloc,
623 uint32_t dstXoff, uint32_t dstYoff,
624 uint32_t dstMip, uint32_t dstFace,
625 uint32_t width, uint32_t height,
626 RsAllocation srcAlloc,
627 uint32_t srcXoff, uint32_t srcYoff,
628 uint32_t srcMip, uint32_t srcFace) {
629 Allocation *dst = static_cast<Allocation *>(dstAlloc);
630 Allocation *src= static_cast<Allocation *>(srcAlloc);
631 rsc->mHal.funcs.allocation.allocData2D(rsc, dst, dstXoff, dstYoff, dstMip,
632 (RsAllocationCubemapFace)dstFace,
633 width, height,
634 src, srcXoff, srcYoff,srcMip,
635 (RsAllocationCubemapFace)srcFace);
636}
637
Jason Sams41e373d2012-01-13 14:01:20 -0800638int32_t rsi_AllocationGetSurfaceTextureID(Context *rsc, RsAllocation valloc) {
639 Allocation *alloc = static_cast<Allocation *>(valloc);
640 return alloc->getSurfaceTextureID(rsc);
641}
642
Jason Sams3522f402012-03-23 11:47:26 -0700643void rsi_AllocationGetSurfaceTextureID2(Context *rsc, RsAllocation valloc, void *vst, size_t len) {
644 Allocation *alloc = static_cast<Allocation *>(valloc);
645 alloc->setSurfaceTexture(rsc, static_cast<SurfaceTexture *>(vst));
646}
647
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800648void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) {
649 Allocation *alloc = static_cast<Allocation *>(valloc);
650 alloc->setSurface(rsc, sur);
651}
652
653void rsi_AllocationIoSend(Context *rsc, RsAllocation valloc) {
654 Allocation *alloc = static_cast<Allocation *>(valloc);
655 alloc->ioSend(rsc);
656}
657
658void rsi_AllocationIoReceive(Context *rsc, RsAllocation valloc) {
659 Allocation *alloc = static_cast<Allocation *>(valloc);
660 alloc->ioReceive(rsc);
661}
662
Jason Samsc975cf42011-04-28 18:26:48 -0700663}
664}
665
666const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
667 Allocation *a = static_cast<Allocation *>(va);
668 a->getType()->incUserRef();
669
670 return a->getType();
671}