blob: 259c3f8b3687bc12fda45cda41dad1cc455c7f04 [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
Tim Murray509ea5c2012-11-13 11:56:40 -0800127void Allocation::readUnchecked(Context *rsc, uint32_t xoff, uint32_t lod,
128 uint32_t count, void *data, size_t sizeBytes) {
129 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
130}
131
132
Jason Sams807fdc42012-07-25 17:55:39 -0700133void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
134 uint32_t w, uint32_t h, void *data, size_t sizeBytes) {
135 const size_t eSize = mHal.state.elementSizeBytes;
136 const size_t lineSize = eSize * w;
137
138 if ((lineSize * h) != sizeBytes) {
139 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes);
140 rsAssert(!"Allocation::read called with mismatched size");
141 return;
142 }
143
144 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
145}
146
147void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
148 uint32_t lod, RsAllocationCubemapFace face,
149 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes) {
150}
151
Jason Sams4b45b892010-12-29 14:31:29 -0800152void Allocation::elementData(Context *rsc, uint32_t x, const void *data,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800153 uint32_t cIdx, size_t sizeBytes) {
154 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700155
Jason Samsbad80742011-03-16 16:29:28 -0700156 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000157 ALOGE("Error Allocation::subElementData component %i out of range.", cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700158 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
159 return;
160 }
161
Jason Samsbad80742011-03-16 16:29:28 -0700162 if (x >= mHal.state.dimensionX) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000163 ALOGE("Error Allocation::subElementData X offset %i out of range.", x);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700164 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
165 return;
166 }
167
Jason Samsbad80742011-03-16 16:29:28 -0700168 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800169 uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
170 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Stephen Hines6ae039b2012-01-18 18:46:27 -0800171 ALOGE("Error Allocation::subElementData data size %zu does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700172 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
173 return;
174 }
175
Jason Samseb4fe182011-05-26 16:33:01 -0700176 rsc->mHal.funcs.allocation.elementData1D(rsc, this, x, data, cIdx, sizeBytes);
177 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700178}
179
Jason Sams4b45b892010-12-29 14:31:29 -0800180void Allocation::elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800181 const void *data, uint32_t cIdx, size_t sizeBytes) {
182 size_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700183
Jason Samsbad80742011-03-16 16:29:28 -0700184 if (x >= mHal.state.dimensionX) {
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 (y >= mHal.state.dimensionY) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000191 ALOGE("Error Allocation::subElementData X offset %i out of range.", x);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700192 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
193 return;
194 }
195
Jason Samsbad80742011-03-16 16:29:28 -0700196 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000197 ALOGE("Error Allocation::subElementData component %i out of range.", cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700198 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
199 return;
200 }
201
Jason Samsbad80742011-03-16 16:29:28 -0700202 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Alex Sakhartchouk76946322012-02-02 09:47:26 -0800203 uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
204 if (sizeBytes != e->getSizeBytes() * elemArraySize) {
Stephen Hines6ae039b2012-01-18 18:46:27 -0800205 ALOGE("Error Allocation::subElementData data size %zu does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700206 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
207 return;
208 }
209
Jason Samseb4fe182011-05-26 16:33:01 -0700210 rsc->mHal.funcs.allocation.elementData2D(rsc, this, x, y, data, cIdx, sizeBytes);
211 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700212}
213
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800214void Allocation::addProgramToDirty(const Program *p) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700215 mToDirtyList.push(p);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700216}
Jason Sams326e0dd2009-05-22 14:03:28 -0700217
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800218void Allocation::removeProgramToDirty(const Program *p) {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700219 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
220 if (mToDirtyList[ct] == p) {
221 mToDirtyList.removeAt(ct);
222 return;
223 }
224 }
225 rsAssert(0);
226}
227
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800228void Allocation::dumpLOGV(const char *prefix) const {
Jason Samsc21cf402009-11-17 17:26:46 -0800229 ObjectBase::dumpLOGV(prefix);
230
231 String8 s(prefix);
232 s.append(" type ");
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700233 if (mHal.state.type) {
Jason Samsbad80742011-03-16 16:29:28 -0700234 mHal.state.type->dumpLOGV(s.string());
Jason Samsc21cf402009-11-17 17:26:46 -0800235 }
236
Steve Block65982012011-10-20 11:56:00 +0100237 ALOGV("%s allocation ptr=%p mUsageFlags=0x04%x, mMipmapControl=0x%04x",
Jason Sams709a0972012-11-15 18:18:04 -0800238 prefix, mHal.drvState.lod[0].mallocPtr, mHal.state.usageFlags, mHal.state.mipmapControl);
Jason Samsc21cf402009-11-17 17:26:46 -0800239}
Jason Sams326e0dd2009-05-22 14:03:28 -0700240
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800241uint32_t Allocation::getPackedSize() const {
242 uint32_t numItems = mHal.state.type->getSizeBytes() / mHal.state.type->getElementSizeBytes();
243 return numItems * mHal.state.type->getElement()->getSizeBytesUnpadded();
244}
245
Jason Samse3150cf2012-07-24 18:10:20 -0700246void Allocation::writePackedData(Context *rsc, const Type *type,
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800247 uint8_t *dst, const uint8_t *src, bool dstPadded) {
248 const Element *elem = type->getElement();
249 uint32_t unpaddedBytes = elem->getSizeBytesUnpadded();
250 uint32_t paddedBytes = elem->getSizeBytes();
251 uint32_t numItems = type->getSizeBytes() / paddedBytes;
252
253 uint32_t srcInc = !dstPadded ? paddedBytes : unpaddedBytes;
254 uint32_t dstInc = dstPadded ? paddedBytes : unpaddedBytes;
255
256 // no sub-elements
257 uint32_t fieldCount = elem->getFieldCount();
258 if (fieldCount == 0) {
259 for (uint32_t i = 0; i < numItems; i ++) {
260 memcpy(dst, src, unpaddedBytes);
261 src += srcInc;
262 dst += dstInc;
263 }
264 return;
265 }
266
267 // Cache offsets
268 uint32_t *offsetsPadded = new uint32_t[fieldCount];
269 uint32_t *offsetsUnpadded = new uint32_t[fieldCount];
270 uint32_t *sizeUnpadded = new uint32_t[fieldCount];
271
272 for (uint32_t i = 0; i < fieldCount; i++) {
273 offsetsPadded[i] = elem->getFieldOffsetBytes(i);
274 offsetsUnpadded[i] = elem->getFieldOffsetBytesUnpadded(i);
275 sizeUnpadded[i] = elem->getField(i)->getSizeBytesUnpadded();
276 }
277
278 uint32_t *srcOffsets = !dstPadded ? offsetsPadded : offsetsUnpadded;
279 uint32_t *dstOffsets = dstPadded ? offsetsPadded : offsetsUnpadded;
280
281 // complex elements, need to copy subelem after subelem
282 for (uint32_t i = 0; i < numItems; i ++) {
283 for (uint32_t fI = 0; fI < fieldCount; fI++) {
284 memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
285 }
286 src += srcInc;
287 dst += dstInc;
288 }
289
290 delete[] offsetsPadded;
291 delete[] offsetsUnpadded;
292 delete[] sizeUnpadded;
293}
294
Jason Samse3150cf2012-07-24 18:10:20 -0700295void Allocation::unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize) {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800296 const uint8_t *src = (const uint8_t*)data;
Jason Sams61a4bb72012-07-25 19:33:43 -0700297 uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800298
Jason Samse3150cf2012-07-24 18:10:20 -0700299 writePackedData(rsc, getType(), dst, src, true);
Jason Sams61a4bb72012-07-25 19:33:43 -0700300 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800301}
302
Jason Samse3150cf2012-07-24 18:10:20 -0700303void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800304 uint32_t paddedBytes = getType()->getElement()->getSizeBytes();
305 uint32_t unpaddedBytes = getType()->getElement()->getSizeBytesUnpadded();
306 uint32_t numItems = mHal.state.type->getSizeBytes() / paddedBytes;
307
Jason Sams61a4bb72012-07-25 19:33:43 -0700308 const uint8_t *src = (const uint8_t*)rsc->mHal.funcs.allocation.lock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800309 uint8_t *dst = new uint8_t[numItems * unpaddedBytes];
310
Jason Samse3150cf2012-07-24 18:10:20 -0700311 writePackedData(rsc, getType(), dst, src, false);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800312 stream->addByteArray(dst, getPackedSize());
313
314 delete[] dst;
Jason Sams61a4bb72012-07-25 19:33:43 -0700315 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800316}
317
Jason Samse3150cf2012-07-24 18:10:20 -0700318void Allocation::serialize(Context *rsc, OStream *stream) const {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700319 // Need to identify ourselves
320 stream->addU32((uint32_t)getClassId());
321
322 String8 name(getName());
323 stream->addString(&name);
324
325 // First thing we need to serialize is the type object since it will be needed
326 // to initialize the class
Jason Samse3150cf2012-07-24 18:10:20 -0700327 mHal.state.type->serialize(rsc, stream);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700328
Jason Samsbad80742011-03-16 16:29:28 -0700329 uint32_t dataSize = mHal.state.type->getSizeBytes();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800330 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
331 uint32_t packedSize = getPackedSize();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700332 // Write how much data we are storing
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800333 stream->addU32(packedSize);
334 if (dataSize == packedSize) {
335 // Now write the data
Jason Sams61a4bb72012-07-25 19:33:43 -0700336 stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
337 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800338 } else {
339 // Now write the data
Jason Samse3150cf2012-07-24 18:10:20 -0700340 packVec3Allocation(rsc, stream);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800341 }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700342}
343
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800344Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700345 // First make sure we are reading the correct object
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700346 RsA3DClassID classID = (RsA3DClassID)stream->loadU32();
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800347 if (classID != RS_A3D_CLASS_ID_ALLOCATION) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000348 ALOGE("allocation loading skipped due to invalid class id\n");
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700349 return NULL;
350 }
351
352 String8 name;
353 stream->loadString(&name);
354
355 Type *type = Type::createFromStream(rsc, stream);
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800356 if (!type) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700357 return NULL;
358 }
359 type->compute();
360
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800361 Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT);
362 type->decUserRef();
363
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700364 // Number of bytes we wrote out for this allocation
365 uint32_t dataSize = stream->loadU32();
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800366 // 3 element vectors are padded to 4 in memory, but padding isn't serialized
367 uint32_t packedSize = alloc->getPackedSize();
368 if (dataSize != type->getSizeBytes() &&
369 dataSize != packedSize) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000370 ALOGE("failed to read allocation because numbytes written is not the same loaded type wants\n");
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800371 ObjectBase::checkDelete(alloc);
Jason Sams225afd32010-10-21 14:06:55 -0700372 ObjectBase::checkDelete(type);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700373 return NULL;
374 }
375
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700376 alloc->setName(name.string(), name.size());
377
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800378 if (dataSize == type->getSizeBytes()) {
379 uint32_t count = dataSize / type->getElementSizeBytes();
380 // Read in all of our allocation data
381 alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
382 } else {
Jason Samse3150cf2012-07-24 18:10:20 -0700383 alloc->unpackVec3Allocation(rsc, stream->getPtr() + stream->getPos(), dataSize);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800384 }
Alex Sakhartchouke6d9fbc2010-08-11 10:30:44 -0700385 stream->reset(stream->getPos() + dataSize);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700386
387 return alloc;
388}
389
Jason Samseb4fe182011-05-26 16:33:01 -0700390void Allocation::sendDirty(const Context *rsc) const {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700391 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
392 mToDirtyList[ct]->forceDirty();
393 }
Jason Samseb4fe182011-05-26 16:33:01 -0700394 mRSC->mHal.funcs.allocation.markDirty(rsc, this);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700395}
Jason Sams326e0dd2009-05-22 14:03:28 -0700396
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800397void Allocation::incRefs(const void *ptr, size_t ct, size_t startOff) const {
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700398 mHal.state.type->incRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700399}
400
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800401void Allocation::decRefs(const void *ptr, size_t ct, size_t startOff) const {
Alex Sakhartchouk5c4369a2011-08-12 11:30:30 -0700402 if (!mHal.state.hasReferences || !getIsScript()) {
403 return;
404 }
Stephen Hines9f70a4e2012-04-02 20:18:48 -0700405 mHal.state.type->decRefs(ptr, ct, startOff);
Jason Samse3929c92010-08-09 18:13:33 -0700406}
407
Jason Samsc7cec1e2011-08-18 18:01:33 -0700408void Allocation::freeChildrenUnlocked () {
Jason Sams61a4bb72012-07-25 19:33:43 -0700409 void *ptr = mRSC->mHal.funcs.allocation.lock1D(mRSC, this);
410 decRefs(ptr, mHal.state.type->getSizeBytes() / mHal.state.type->getElementSizeBytes(), 0);
411 mRSC->mHal.funcs.allocation.unlock1D(mRSC, this);
Jason Samsc7cec1e2011-08-18 18:01:33 -0700412}
413
414bool Allocation::freeChildren() {
415 if (mHal.state.hasReferences) {
416 incSysRef();
417 freeChildrenUnlocked();
418 return decSysRef();
419 }
420 return false;
421}
422
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800423void Allocation::copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) {
Jason Sams96abf812010-10-05 13:32:49 -0700424}
425
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800426void Allocation::resize1D(Context *rsc, uint32_t dimX) {
Jason Samsbad80742011-03-16 16:29:28 -0700427 uint32_t oldDimX = mHal.state.dimensionX;
Jason Sams96abf812010-10-05 13:32:49 -0700428 if (dimX == oldDimX) {
429 return;
430 }
431
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700432 ObjectBaseRef<Type> t = mHal.state.type->cloneAndResize1D(rsc, dimX);
Jason Sams96abf812010-10-05 13:32:49 -0700433 if (dimX < oldDimX) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700434 decRefs(rsc->mHal.funcs.allocation.lock1D(rsc, this), oldDimX - dimX, dimX);
435 rsc->mHal.funcs.allocation.unlock1D(rsc, this);
Jason Sams96abf812010-10-05 13:32:49 -0700436 }
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700437 rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700438 setType(t.get());
Jason Samsbad80742011-03-16 16:29:28 -0700439 updateCache();
Jason Sams96abf812010-10-05 13:32:49 -0700440}
441
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800442void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000443 ALOGE("not implemented");
Jason Sams96abf812010-10-05 13:32:49 -0700444}
445
Jason Sams41e373d2012-01-13 14:01:20 -0800446int32_t Allocation::getSurfaceTextureID(const Context *rsc) {
447 int32_t id = rsc->mHal.funcs.allocation.initSurfaceTexture(rsc, this);
448 mHal.state.surfaceTextureID = id;
449 return id;
450}
451
Jason Sams3522f402012-03-23 11:47:26 -0700452void Allocation::setSurfaceTexture(const Context *rsc, SurfaceTexture *st) {
453 if(st != mHal.state.surfaceTexture) {
454 if(mHal.state.surfaceTexture != NULL) {
455 mHal.state.surfaceTexture->decStrong(NULL);
456 }
457 mHal.state.surfaceTexture = st;
458 if(mHal.state.surfaceTexture != NULL) {
459 mHal.state.surfaceTexture->incStrong(NULL);
460 }
461 }
462}
463
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800464void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) {
465 ANativeWindow *nw = (ANativeWindow *)sur;
466 ANativeWindow *old = mHal.state.wndSurface;
467 if (nw) {
468 nw->incStrong(NULL);
469 }
470 rsc->mHal.funcs.allocation.setSurfaceTexture(rsc, this, nw);
471 mHal.state.wndSurface = nw;
472 if (old) {
473 old->decStrong(NULL);
474 }
475}
476
477void Allocation::ioSend(const Context *rsc) {
478 rsc->mHal.funcs.allocation.ioSend(rsc, this);
479}
480
481void Allocation::ioReceive(const Context *rsc) {
482 rsc->mHal.funcs.allocation.ioReceive(rsc, this);
483}
484
485
Jason Sams326e0dd2009-05-22 14:03:28 -0700486/////////////////
Jason Sams565ac362009-06-03 16:04:54 -0700487//
Stephen Hines6a121812011-03-01 17:34:59 -0800488
Jason Sams326e0dd2009-05-22 14:03:28 -0700489namespace android {
490namespace renderscript {
491
Jason Sams366c9c82010-12-08 16:14:36 -0800492void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
493 Allocation *a = static_cast<Allocation *>(va);
Jason Samseb4fe182011-05-26 16:33:01 -0700494 a->sendDirty(rsc);
Jason Sams366c9c82010-12-08 16:14:36 -0800495 a->syncAll(rsc, src);
496}
497
Jason Samsa2371512011-01-12 13:28:37 -0800498void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700499 Allocation *alloc = static_cast<Allocation *>(va);
500 rsc->mHal.funcs.allocation.generateMipmaps(rsc, alloc);
Jason Sams837e3882010-12-10 16:03:15 -0800501}
502
Jason Sams807fdc42012-07-25 17:55:39 -0700503void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
504 Allocation *a = static_cast<Allocation *>(va);
505 const Type * t = a->getType();
506 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
507 t->getDimX(), t->getDimY(), data, sizeBytes);
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700508}
509
Jason Sams4b45b892010-12-29 14:31:29 -0800510void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700511 uint32_t count, const void *data, size_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700512 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800513 a->data(rsc, xoff, lod, count, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700514}
515
Jason Sams4b45b892010-12-29 14:31:29 -0800516void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800517 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700518 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800519 a->elementData(rsc, x, y, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700520}
521
Jason Sams4b45b892010-12-29 14:31:29 -0800522void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800523 const void *data, size_t sizeBytes, size_t eoff) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700524 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800525 a->elementData(rsc, x, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700526}
527
Jason Sams4b45b892010-12-29 14:31:29 -0800528void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700529 uint32_t w, uint32_t h, const void *data, size_t sizeBytes) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700530 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800531 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700532}
533
Jason Sams807fdc42012-07-25 17:55:39 -0700534void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
Jason Samse579df42009-08-10 14:55:26 -0700535 Allocation *a = static_cast<Allocation *>(va);
Jason Sams807fdc42012-07-25 17:55:39 -0700536 const Type * t = a->getType();
537 if(t->getDimY()) {
538 a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
539 t->getDimX(), t->getDimY(), data, sizeBytes);
540 } else {
541 a->read(rsc, 0, 0, t->getDimX(), data, sizeBytes);
542 }
543
Jason Samse579df42009-08-10 14:55:26 -0700544}
545
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800546void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) {
Jason Sams96abf812010-10-05 13:32:49 -0700547 Allocation *a = static_cast<Allocation *>(va);
548 a->resize1D(rsc, dimX);
549}
550
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800551void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
Jason Sams96abf812010-10-05 13:32:49 -0700552 Allocation *a = static_cast<Allocation *>(va);
553 a->resize2D(rsc, dimX, dimY);
554}
555
Jason Samsc975cf42011-04-28 18:26:48 -0700556RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype,
557 RsAllocationMipmapControl mips,
Jason Sams179e9a42011-11-23 15:02:15 -0800558 uint32_t usages, uint32_t ptr) {
559 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void *)ptr);
Jason Samseb4fe182011-05-26 16:33:01 -0700560 if (!alloc) {
561 return NULL;
562 }
Jason Samsf0c1df42010-10-26 13:09:17 -0700563 alloc->incUserRef();
564 return alloc;
565}
566
Jason Samsc975cf42011-04-28 18:26:48 -0700567RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype,
568 RsAllocationMipmapControl mips,
Jason Sams807fdc42012-07-25 17:55:39 -0700569 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800570 Type *t = static_cast<Type *>(vtype);
Jason Samsf0c1df42010-10-26 13:09:17 -0700571
Jason Sams179e9a42011-11-23 15:02:15 -0800572 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
Jason Samsf0c1df42010-10-26 13:09:17 -0700573 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
574 if (texAlloc == NULL) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000575 ALOGE("Memory allocation failure");
Jason Samsf0c1df42010-10-26 13:09:17 -0700576 return NULL;
577 }
578
Jason Sams807fdc42012-07-25 17:55:39 -0700579 texAlloc->data(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
580 t->getDimX(), t->getDimY(), data, sizeBytes);
Jason Samsebc50192010-12-13 15:32:35 -0800581 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700582 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700583 }
584
Jason Samseb4fe182011-05-26 16:33:01 -0700585 texAlloc->sendDirty(rsc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700586 return texAlloc;
587}
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800588
Jason Samsc975cf42011-04-28 18:26:48 -0700589RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype,
590 RsAllocationMipmapControl mips,
Jason Sams807fdc42012-07-25 17:55:39 -0700591 const void *data, size_t sizeBytes, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800592 Type *t = static_cast<Type *>(vtype);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800593
594 // Cubemap allocation's faces should be Width by Width each.
595 // Source data should have 6 * Width by Width pixels
596 // Error checking is done in the java layer
Jason Sams179e9a42011-11-23 15:02:15 -0800597 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800598 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
599 if (texAlloc == NULL) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000600 ALOGE("Memory allocation failure");
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800601 return NULL;
602 }
603
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800604 uint32_t faceSize = t->getDimX();
605 uint32_t strideBytes = faceSize * 6 * t->getElementSizeBytes();
606 uint32_t copySize = faceSize * t->getElementSizeBytes();
607
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800608 uint8_t *sourcePtr = (uint8_t*)data;
Jason Sams366c9c82010-12-08 16:14:36 -0800609 for (uint32_t face = 0; face < 6; face ++) {
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800610 for (uint32_t dI = 0; dI < faceSize; dI ++) {
Jason Sams807fdc42012-07-25 17:55:39 -0700611 texAlloc->data(rsc, 0, dI, 0, (RsAllocationCubemapFace)face,
612 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize);
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800613 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800614
Jason Sams366c9c82010-12-08 16:14:36 -0800615 // Move the data pointer to the next cube face
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800616 sourcePtr += copySize;
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800617 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800618
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800619 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Sams61a4bb72012-07-25 19:33:43 -0700620 rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800621 }
622
Jason Samseb4fe182011-05-26 16:33:01 -0700623 texAlloc->sendDirty(rsc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800624 return texAlloc;
625}
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800626
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700627void rsi_AllocationCopy2DRange(Context *rsc,
628 RsAllocation dstAlloc,
629 uint32_t dstXoff, uint32_t dstYoff,
630 uint32_t dstMip, uint32_t dstFace,
631 uint32_t width, uint32_t height,
632 RsAllocation srcAlloc,
633 uint32_t srcXoff, uint32_t srcYoff,
634 uint32_t srcMip, uint32_t srcFace) {
635 Allocation *dst = static_cast<Allocation *>(dstAlloc);
636 Allocation *src= static_cast<Allocation *>(srcAlloc);
637 rsc->mHal.funcs.allocation.allocData2D(rsc, dst, dstXoff, dstYoff, dstMip,
638 (RsAllocationCubemapFace)dstFace,
639 width, height,
640 src, srcXoff, srcYoff,srcMip,
641 (RsAllocationCubemapFace)srcFace);
642}
643
Jason Sams41e373d2012-01-13 14:01:20 -0800644int32_t rsi_AllocationGetSurfaceTextureID(Context *rsc, RsAllocation valloc) {
645 Allocation *alloc = static_cast<Allocation *>(valloc);
646 return alloc->getSurfaceTextureID(rsc);
647}
648
Jason Sams3522f402012-03-23 11:47:26 -0700649void rsi_AllocationGetSurfaceTextureID2(Context *rsc, RsAllocation valloc, void *vst, size_t len) {
650 Allocation *alloc = static_cast<Allocation *>(valloc);
651 alloc->setSurfaceTexture(rsc, static_cast<SurfaceTexture *>(vst));
652}
653
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800654void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) {
655 Allocation *alloc = static_cast<Allocation *>(valloc);
656 alloc->setSurface(rsc, sur);
657}
658
659void rsi_AllocationIoSend(Context *rsc, RsAllocation valloc) {
660 Allocation *alloc = static_cast<Allocation *>(valloc);
661 alloc->ioSend(rsc);
662}
663
664void rsi_AllocationIoReceive(Context *rsc, RsAllocation valloc) {
665 Allocation *alloc = static_cast<Allocation *>(valloc);
666 alloc->ioReceive(rsc);
667}
668
Tim Murray509ea5c2012-11-13 11:56:40 -0800669void rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
670 uint32_t count, void *data, size_t sizeBytes) {
671 Allocation *a = static_cast<Allocation *>(va);
672 a->readUnchecked(rsc, xoff, lod, count, data, sizeBytes);
673}
674
Tim Murray7b3e3092012-11-16 13:32:24 -0800675void rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
676 uint32_t lod, RsAllocationCubemapFace face, uint32_t w,
677 uint32_t h, void *data, size_t sizeBytes) {
678 Allocation *a = static_cast<Allocation *>(va);
679 a->read(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
680}
681
Jason Samsc975cf42011-04-28 18:26:48 -0700682}
683}
684
685const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
686 Allocation *a = static_cast<Allocation *>(va);
687 a->getType()->incUserRef();
688
689 return a->getType();
690}