blob: 4359d957193a6d94f7aadda90c52a0c72b3b9021 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
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"
Jason Samseb4fe182011-05-26 16:33:01 -070018#include "rs_hal.h"
19
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -070020
Jason Sams326e0dd2009-05-22 14:03:28 -070021using namespace android;
22using namespace android::renderscript;
23
Alex Sakhartchouka2aab8b2010-12-15 09:59:58 -080024Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
25 RsAllocationMipmapControl mc)
26 : ObjectBase(rsc) {
Jason Samsfa84da22010-03-01 15:31:04 -080027
Jason Samseb4fe182011-05-26 16:33:01 -070028 memset(&mHal, 0, sizeof(mHal));
29 mHal.state.mipmapControl = RS_ALLOCATION_MIPMAP_NONE;
Jason Samsbad80742011-03-16 16:29:28 -070030 mHal.state.usageFlags = usages;
31 mHal.state.mipmapControl = mc;
Jason Sams366c9c82010-12-08 16:14:36 -080032
Jason Samsbad80742011-03-16 16:29:28 -070033 mHal.state.type.set(type);
34 updateCache();
35}
Jason Samsfa84da22010-03-01 15:31:04 -080036
Jason Samseb4fe182011-05-26 16:33:01 -070037Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
38 RsAllocationMipmapControl mc) {
39 Allocation *a = new Allocation(rsc, type, usages, mc);
40
41 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
42 rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
43 delete a;
44 return NULL;
45 }
46 return a;
47}
48
Jason Samsbad80742011-03-16 16:29:28 -070049void Allocation::updateCache() {
50 const Type *type = mHal.state.type.get();
51 mHal.state.dimensionX = type->getDimX();
52 mHal.state.dimensionY = type->getDimY();
53 mHal.state.dimensionZ = type->getDimZ();
54 mHal.state.hasFaces = type->getDimFaces();
55 mHal.state.hasMipmaps = type->getDimLOD();
56 mHal.state.elementSizeBytes = type->getElementSizeBytes();
57 mHal.state.hasReferences = mHal.state.type->getElement()->getHasReferences();
Jason Sams326e0dd2009-05-22 14:03:28 -070058}
59
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080060Allocation::~Allocation() {
Jason Samsc7cec1e2011-08-18 18:01:33 -070061 freeChildrenUnlocked();
Jason Samseb4fe182011-05-26 16:33:01 -070062 mRSC->mHal.funcs.allocation.destroy(mRSC, this);
Jason Sams326e0dd2009-05-22 14:03:28 -070063}
64
Jason Sams366c9c82010-12-08 16:14:36 -080065void Allocation::syncAll(Context *rsc, RsAllocationUsageType src) {
Jason Samseb4fe182011-05-26 16:33:01 -070066 rsc->mHal.funcs.allocation.syncAll(rsc, this, src);
Jason Samscf4c7c92009-12-14 12:57:40 -080067}
68
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080069void Allocation::read(void *data) {
Jason Samseb4fe182011-05-26 16:33:01 -070070 memcpy(data, getPtr(), mHal.state.type->getSizeBytes());
Jason Samse579df42009-08-10 14:55:26 -070071}
72
Jason Sams4b45b892010-12-29 14:31:29 -080073void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod,
74 uint32_t count, const void *data, uint32_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -070075 const uint32_t eSize = mHal.state.type->getElementSizeBytes();
Jason Sams9397e302009-08-27 20:23:34 -070076
Jason Samseb4fe182011-05-26 16:33:01 -070077 if ((count * eSize) != sizeBytes) {
78 LOGE("Allocation::subData called with mismatched size expected %i, got %i",
79 (count * eSize), sizeBytes);
Jason Samsbad80742011-03-16 16:29:28 -070080 mHal.state.type->dumpLOGV("type info");
Jason Sams9397e302009-08-27 20:23:34 -070081 return;
82 }
Jason Samse3929c92010-08-09 18:13:33 -070083
Jason Samseb4fe182011-05-26 16:33:01 -070084 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
85 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070086}
87
Jason Sams4b45b892010-12-29 14:31:29 -080088void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080089 uint32_t w, uint32_t h, const void *data, uint32_t sizeBytes) {
Jason Samseb4fe182011-05-26 16:33:01 -070090 const uint32_t eSize = mHal.state.elementSizeBytes;
91 const uint32_t lineSize = eSize * w;
Jason Sams326e0dd2009-05-22 14:03:28 -070092
Jason Samsa2371512011-01-12 13:28:37 -080093 //LOGE("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 -070094
Jason Samsa2371512011-01-12 13:28:37 -080095 if ((lineSize * h) != sizeBytes) {
96 LOGE("Allocation size mismatch, expected %i, got %i", (lineSize * h), sizeBytes);
Jason Sams9397e302009-08-27 20:23:34 -070097 rsAssert(!"Allocation::subData called with mismatched size");
98 return;
99 }
100
Jason Samseb4fe182011-05-26 16:33:01 -0700101 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
102 sendDirty(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -0700103}
104
Jason Sams236385b2011-01-12 14:53:25 -0800105void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
106 uint32_t lod, RsAllocationCubemapFace face,
107 uint32_t w, uint32_t h, uint32_t d, const void *data, uint32_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700108}
109
Jason Sams4b45b892010-12-29 14:31:29 -0800110void Allocation::elementData(Context *rsc, uint32_t x, const void *data,
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800111 uint32_t cIdx, uint32_t sizeBytes) {
Jason Samsbad80742011-03-16 16:29:28 -0700112 uint32_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700113
Jason Samsbad80742011-03-16 16:29:28 -0700114 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700115 LOGE("Error Allocation::subElementData component %i out of range.", cIdx);
116 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
117 return;
118 }
119
Jason Samsbad80742011-03-16 16:29:28 -0700120 if (x >= mHal.state.dimensionX) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700121 LOGE("Error Allocation::subElementData X offset %i out of range.", x);
122 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
123 return;
124 }
125
Jason Samsbad80742011-03-16 16:29:28 -0700126 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700127 if (sizeBytes != e->getSizeBytes()) {
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800128 LOGE("Error Allocation::subElementData data size %i does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700129 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
130 return;
131 }
132
Jason Samseb4fe182011-05-26 16:33:01 -0700133 rsc->mHal.funcs.allocation.elementData1D(rsc, this, x, data, cIdx, sizeBytes);
134 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700135}
136
Jason Sams4b45b892010-12-29 14:31:29 -0800137void Allocation::elementData(Context *rsc, uint32_t x, uint32_t y,
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800138 const void *data, uint32_t cIdx, uint32_t sizeBytes) {
Jason Samsbad80742011-03-16 16:29:28 -0700139 uint32_t eSize = mHal.state.elementSizeBytes;
Jason Sams5f0c84c2010-08-31 13:50:42 -0700140
Jason Samsbad80742011-03-16 16:29:28 -0700141 if (x >= mHal.state.dimensionX) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700142 LOGE("Error Allocation::subElementData X offset %i out of range.", x);
143 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
144 return;
145 }
146
Jason Samsbad80742011-03-16 16:29:28 -0700147 if (y >= mHal.state.dimensionY) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700148 LOGE("Error Allocation::subElementData X offset %i out of range.", x);
149 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
150 return;
151 }
152
Jason Samsbad80742011-03-16 16:29:28 -0700153 if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700154 LOGE("Error Allocation::subElementData component %i out of range.", cIdx);
155 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
156 return;
157 }
158
Jason Samsbad80742011-03-16 16:29:28 -0700159 const Element * e = mHal.state.type->getElement()->getField(cIdx);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700160
161 if (sizeBytes != e->getSizeBytes()) {
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800162 LOGE("Error Allocation::subElementData data size %i does not match field size %zu.", sizeBytes, e->getSizeBytes());
Jason Sams5f0c84c2010-08-31 13:50:42 -0700163 rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
164 return;
165 }
166
Jason Samseb4fe182011-05-26 16:33:01 -0700167 rsc->mHal.funcs.allocation.elementData2D(rsc, this, x, y, data, cIdx, sizeBytes);
168 sendDirty(rsc);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700169}
170
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800171void Allocation::addProgramToDirty(const Program *p) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700172 mToDirtyList.push(p);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700173}
Jason Sams326e0dd2009-05-22 14:03:28 -0700174
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800175void Allocation::removeProgramToDirty(const Program *p) {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700176 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
177 if (mToDirtyList[ct] == p) {
178 mToDirtyList.removeAt(ct);
179 return;
180 }
181 }
182 rsAssert(0);
183}
184
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800185void Allocation::dumpLOGV(const char *prefix) const {
Jason Samsc21cf402009-11-17 17:26:46 -0800186 ObjectBase::dumpLOGV(prefix);
187
188 String8 s(prefix);
189 s.append(" type ");
Jason Samsbad80742011-03-16 16:29:28 -0700190 if (mHal.state.type.get()) {
191 mHal.state.type->dumpLOGV(s.string());
Jason Samsc21cf402009-11-17 17:26:46 -0800192 }
193
Jason Samseb4fe182011-05-26 16:33:01 -0700194 LOGV("%s allocation ptr=%p mUsageFlags=0x04%x, mMipmapControl=0x%04x",
195 prefix, getPtr(), mHal.state.usageFlags, mHal.state.mipmapControl);
Jason Samsc21cf402009-11-17 17:26:46 -0800196}
Jason Sams326e0dd2009-05-22 14:03:28 -0700197
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800198void Allocation::serialize(OStream *stream) const {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700199 // Need to identify ourselves
200 stream->addU32((uint32_t)getClassId());
201
202 String8 name(getName());
203 stream->addString(&name);
204
205 // First thing we need to serialize is the type object since it will be needed
206 // to initialize the class
Jason Samsbad80742011-03-16 16:29:28 -0700207 mHal.state.type->serialize(stream);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700208
Jason Samsbad80742011-03-16 16:29:28 -0700209 uint32_t dataSize = mHal.state.type->getSizeBytes();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700210 // Write how much data we are storing
211 stream->addU32(dataSize);
212 // Now write the data
Jason Samseb4fe182011-05-26 16:33:01 -0700213 stream->addByteArray(getPtr(), dataSize);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700214}
215
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800216Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700217 // First make sure we are reading the correct object
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700218 RsA3DClassID classID = (RsA3DClassID)stream->loadU32();
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800219 if (classID != RS_A3D_CLASS_ID_ALLOCATION) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700220 LOGE("allocation loading skipped due to invalid class id\n");
221 return NULL;
222 }
223
224 String8 name;
225 stream->loadString(&name);
226
227 Type *type = Type::createFromStream(rsc, stream);
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800228 if (!type) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700229 return NULL;
230 }
231 type->compute();
232
233 // Number of bytes we wrote out for this allocation
234 uint32_t dataSize = stream->loadU32();
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800235 if (dataSize != type->getSizeBytes()) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700236 LOGE("failed to read allocation because numbytes written is not the same loaded type wants\n");
Jason Sams225afd32010-10-21 14:06:55 -0700237 ObjectBase::checkDelete(type);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700238 return NULL;
239 }
240
Jason Samseb4fe182011-05-26 16:33:01 -0700241 Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700242 alloc->setName(name.string(), name.size());
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700243 type->decUserRef();
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700244
Jason Sams4b45b892010-12-29 14:31:29 -0800245 uint32_t count = dataSize / type->getElementSizeBytes();
246
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700247 // Read in all of our allocation data
Jason Sams4b45b892010-12-29 14:31:29 -0800248 alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
Alex Sakhartchouke6d9fbc2010-08-11 10:30:44 -0700249 stream->reset(stream->getPos() + dataSize);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700250
251 return alloc;
252}
253
Jason Samseb4fe182011-05-26 16:33:01 -0700254void Allocation::sendDirty(const Context *rsc) const {
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700255 for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
256 mToDirtyList[ct]->forceDirty();
257 }
Jason Samseb4fe182011-05-26 16:33:01 -0700258 mRSC->mHal.funcs.allocation.markDirty(rsc, this);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700259}
Jason Sams326e0dd2009-05-22 14:03:28 -0700260
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800261void Allocation::incRefs(const void *ptr, size_t ct, size_t startOff) const {
Jason Samse3929c92010-08-09 18:13:33 -0700262 const uint8_t *p = static_cast<const uint8_t *>(ptr);
Jason Samsbad80742011-03-16 16:29:28 -0700263 const Element *e = mHal.state.type->getElement();
Jason Samse3929c92010-08-09 18:13:33 -0700264 uint32_t stride = e->getSizeBytes();
265
Jason Sams96abf812010-10-05 13:32:49 -0700266 p += stride * startOff;
Jason Samse3929c92010-08-09 18:13:33 -0700267 while (ct > 0) {
268 e->incRefs(p);
269 ct --;
270 p += stride;
271 }
272}
273
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800274void Allocation::decRefs(const void *ptr, size_t ct, size_t startOff) const {
Alex Sakhartchouk5c4369a2011-08-12 11:30:30 -0700275 if (!mHal.state.hasReferences || !getIsScript()) {
276 return;
277 }
Jason Samse3929c92010-08-09 18:13:33 -0700278 const uint8_t *p = static_cast<const uint8_t *>(ptr);
Jason Samsbad80742011-03-16 16:29:28 -0700279 const Element *e = mHal.state.type->getElement();
Jason Samse3929c92010-08-09 18:13:33 -0700280 uint32_t stride = e->getSizeBytes();
281
Jason Sams96abf812010-10-05 13:32:49 -0700282 p += stride * startOff;
Jason Samse3929c92010-08-09 18:13:33 -0700283 while (ct > 0) {
284 e->decRefs(p);
285 ct --;
286 p += stride;
287 }
288}
289
Jason Samsc7cec1e2011-08-18 18:01:33 -0700290void Allocation::freeChildrenUnlocked () {
291 decRefs(getPtr(), mHal.state.type->getSizeBytes() / mHal.state.type->getElementSizeBytes(), 0);
292}
293
294bool Allocation::freeChildren() {
295 if (mHal.state.hasReferences) {
296 incSysRef();
297 freeChildrenUnlocked();
298 return decSysRef();
299 }
300 return false;
301}
302
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800303void Allocation::copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) {
Jason Sams96abf812010-10-05 13:32:49 -0700304}
305
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800306void Allocation::resize1D(Context *rsc, uint32_t dimX) {
Jason Samsbad80742011-03-16 16:29:28 -0700307 uint32_t oldDimX = mHal.state.dimensionX;
Jason Sams96abf812010-10-05 13:32:49 -0700308 if (dimX == oldDimX) {
309 return;
310 }
311
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700312 ObjectBaseRef<Type> t = mHal.state.type->cloneAndResize1D(rsc, dimX);
Jason Sams96abf812010-10-05 13:32:49 -0700313 if (dimX < oldDimX) {
Jason Samseb4fe182011-05-26 16:33:01 -0700314 decRefs(getPtr(), oldDimX - dimX, dimX);
Jason Sams96abf812010-10-05 13:32:49 -0700315 }
Alex Sakhartchoukc700e642011-08-16 13:09:46 -0700316 rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
317 mHal.state.type.set(t.get());
Jason Samsbad80742011-03-16 16:29:28 -0700318 updateCache();
Jason Sams96abf812010-10-05 13:32:49 -0700319}
320
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800321void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
Jason Sams96abf812010-10-05 13:32:49 -0700322 LOGE("not implemented");
323}
324
Jason Sams326e0dd2009-05-22 14:03:28 -0700325/////////////////
Jason Sams565ac362009-06-03 16:04:54 -0700326//
Stephen Hines6a121812011-03-01 17:34:59 -0800327
Jason Sams326e0dd2009-05-22 14:03:28 -0700328namespace android {
329namespace renderscript {
330
Jason Samsc975cf42011-04-28 18:26:48 -0700331static void AllocationGenerateScriptMips(RsContext con, RsAllocation va);
332
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800333static void mip565(const Adapter2D &out, const Adapter2D &in) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700334 uint32_t w = out.getDimX();
335 uint32_t h = out.getDimY();
336
Jason Samse9f5c532009-07-28 17:20:11 -0700337 for (uint32_t y=0; y < h; y++) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700338 uint16_t *oPtr = static_cast<uint16_t *>(out.getElement(0, y));
339 const uint16_t *i1 = static_cast<uint16_t *>(in.getElement(0, y*2));
340 const uint16_t *i2 = static_cast<uint16_t *>(in.getElement(0, y*2+1));
341
Jason Samse9f5c532009-07-28 17:20:11 -0700342 for (uint32_t x=0; x < w; x++) {
Jason Sams565ac362009-06-03 16:04:54 -0700343 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
344 oPtr ++;
345 i1 += 2;
346 i2 += 2;
347 }
348 }
349}
350
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800351static void mip8888(const Adapter2D &out, const Adapter2D &in) {
Jason Sams565ac362009-06-03 16:04:54 -0700352 uint32_t w = out.getDimX();
353 uint32_t h = out.getDimY();
354
Jason Samse9f5c532009-07-28 17:20:11 -0700355 for (uint32_t y=0; y < h; y++) {
Jason Sams565ac362009-06-03 16:04:54 -0700356 uint32_t *oPtr = static_cast<uint32_t *>(out.getElement(0, y));
357 const uint32_t *i1 = static_cast<uint32_t *>(in.getElement(0, y*2));
358 const uint32_t *i2 = static_cast<uint32_t *>(in.getElement(0, y*2+1));
359
Jason Samse9f5c532009-07-28 17:20:11 -0700360 for (uint32_t x=0; x < w; x++) {
Jason Sams565ac362009-06-03 16:04:54 -0700361 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
Jason Sams326e0dd2009-05-22 14:03:28 -0700362 oPtr ++;
363 i1 += 2;
364 i2 += 2;
365 }
366 }
Jason Sams326e0dd2009-05-22 14:03:28 -0700367}
368
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800369static void mip8(const Adapter2D &out, const Adapter2D &in) {
Jason Sams2f6d8612010-01-19 17:53:54 -0800370 uint32_t w = out.getDimX();
371 uint32_t h = out.getDimY();
372
373 for (uint32_t y=0; y < h; y++) {
374 uint8_t *oPtr = static_cast<uint8_t *>(out.getElement(0, y));
375 const uint8_t *i1 = static_cast<uint8_t *>(in.getElement(0, y*2));
376 const uint8_t *i2 = static_cast<uint8_t *>(in.getElement(0, y*2+1));
377
378 for (uint32_t x=0; x < w; x++) {
379 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f);
380 oPtr ++;
381 i1 += 2;
382 i2 += 2;
383 }
384 }
385}
386
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800387static void mip(const Adapter2D &out, const Adapter2D &in) {
388 switch (out.getBaseType()->getElement()->getSizeBits()) {
Jason Samse9f5c532009-07-28 17:20:11 -0700389 case 32:
390 mip8888(out, in);
391 break;
392 case 16:
393 mip565(out, in);
394 break;
Jason Sams2f6d8612010-01-19 17:53:54 -0800395 case 8:
396 mip8(out, in);
397 break;
Jason Samse9f5c532009-07-28 17:20:11 -0700398 }
Jason Samse9f5c532009-07-28 17:20:11 -0700399}
Jason Sams326e0dd2009-05-22 14:03:28 -0700400
Jason Sams366c9c82010-12-08 16:14:36 -0800401void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
402 Allocation *a = static_cast<Allocation *>(va);
Jason Samseb4fe182011-05-26 16:33:01 -0700403 a->sendDirty(rsc);
Jason Sams366c9c82010-12-08 16:14:36 -0800404 a->syncAll(rsc, src);
405}
406
Jason Samsa2371512011-01-12 13:28:37 -0800407void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700408 Allocation *texAlloc = static_cast<Allocation *>(va);
Jason Samsc975cf42011-04-28 18:26:48 -0700409 AllocationGenerateScriptMips(rsc, texAlloc);
Jason Sams837e3882010-12-10 16:03:15 -0800410}
411
412void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t dataLen) {
413 Allocation *texAlloc = static_cast<Allocation *>(va);
414 const Type * t = texAlloc->getType();
415
416 size_t s = t->getDimX() * t->getDimY() * t->getElementSizeBytes();
417 if (s != dataLen) {
418 rsc->setError(RS_ERROR_BAD_VALUE, "Bitmap size didn't match allocation size");
419 return;
420 }
421
422 memcpy(data, texAlloc->getPtr(), s);
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700423}
424
Jason Sams4b45b892010-12-29 14:31:29 -0800425void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700426 uint32_t count, const void *data, size_t sizeBytes) {
Jason Sams326e0dd2009-05-22 14:03:28 -0700427 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800428 a->data(rsc, xoff, lod, count, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700429}
430
Jason Sams4b45b892010-12-29 14:31:29 -0800431void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700432 const void *data, size_t eoff, uint32_t sizeBytes) { // TODO: this seems wrong, eoff and sizeBytes may be swapped
Jason Sams326e0dd2009-05-22 14:03:28 -0700433 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800434 a->elementData(rsc, x, y, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700435}
436
Jason Sams4b45b892010-12-29 14:31:29 -0800437void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700438 const void *data, size_t eoff, uint32_t sizeBytes) { // TODO: this seems wrong, eoff and sizeBytes may be swapped
Jason Sams5f0c84c2010-08-31 13:50:42 -0700439 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800440 a->elementData(rsc, x, data, eoff, sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700441}
442
Jason Sams4b45b892010-12-29 14:31:29 -0800443void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700444 uint32_t w, uint32_t h, const void *data, size_t sizeBytes) {
Jason Sams5f0c84c2010-08-31 13:50:42 -0700445 Allocation *a = static_cast<Allocation *>(va);
Jason Sams4b45b892010-12-29 14:31:29 -0800446 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700447}
448
Alex Sakhartchouk70b83c12011-04-06 10:57:51 -0700449void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t data_length) {
Jason Samse579df42009-08-10 14:55:26 -0700450 Allocation *a = static_cast<Allocation *>(va);
451 a->read(data);
452}
453
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800454void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) {
Jason Sams96abf812010-10-05 13:32:49 -0700455 Allocation *a = static_cast<Allocation *>(va);
456 a->resize1D(rsc, dimX);
457}
458
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800459void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
Jason Sams96abf812010-10-05 13:32:49 -0700460 Allocation *a = static_cast<Allocation *>(va);
461 a->resize2D(rsc, dimX, dimY);
462}
463
Jason Samsc975cf42011-04-28 18:26:48 -0700464static void AllocationGenerateScriptMips(RsContext con, RsAllocation va) {
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800465 Context *rsc = static_cast<Context *>(con);
466 Allocation *texAlloc = static_cast<Allocation *>(va);
467 uint32_t numFaces = texAlloc->getType()->getDimFaces() ? 6 : 1;
468 for (uint32_t face = 0; face < numFaces; face ++) {
469 Adapter2D adapt(rsc, texAlloc);
470 Adapter2D adapt2(rsc, texAlloc);
471 adapt.setFace(face);
472 adapt2.setFace(face);
473 for (uint32_t lod=0; lod < (texAlloc->getType()->getLODCount() -1); lod++) {
474 adapt.setLOD(lod);
475 adapt2.setLOD(lod + 1);
476 mip(adapt2, adapt);
477 }
478 }
479}
480
Jason Samsc975cf42011-04-28 18:26:48 -0700481RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype,
482 RsAllocationMipmapControl mips,
483 uint32_t usages) {
Jason Samseb4fe182011-05-26 16:33:01 -0700484 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips);
485 if (!alloc) {
486 return NULL;
487 }
Jason Samsf0c1df42010-10-26 13:09:17 -0700488 alloc->incUserRef();
489 return alloc;
490}
491
Jason Samsc975cf42011-04-28 18:26:48 -0700492RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype,
493 RsAllocationMipmapControl mips,
494 const void *data, size_t data_length, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800495 Type *t = static_cast<Type *>(vtype);
Jason Samsf0c1df42010-10-26 13:09:17 -0700496
Jason Samsc975cf42011-04-28 18:26:48 -0700497 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages);
Jason Samsf0c1df42010-10-26 13:09:17 -0700498 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
499 if (texAlloc == NULL) {
500 LOGE("Memory allocation failure");
501 return NULL;
502 }
503
Jason Sams366c9c82010-12-08 16:14:36 -0800504 memcpy(texAlloc->getPtr(), data, t->getDimX() * t->getDimY() * t->getElementSizeBytes());
Jason Samsebc50192010-12-13 15:32:35 -0800505 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Samsc975cf42011-04-28 18:26:48 -0700506 AllocationGenerateScriptMips(rsc, texAlloc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700507 }
508
Jason Samseb4fe182011-05-26 16:33:01 -0700509 texAlloc->sendDirty(rsc);
Jason Samsf0c1df42010-10-26 13:09:17 -0700510 return texAlloc;
511}
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800512
Jason Samsc975cf42011-04-28 18:26:48 -0700513RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype,
514 RsAllocationMipmapControl mips,
515 const void *data, size_t data_length, uint32_t usages) {
Jason Sams366c9c82010-12-08 16:14:36 -0800516 Type *t = static_cast<Type *>(vtype);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800517
518 // Cubemap allocation's faces should be Width by Width each.
519 // Source data should have 6 * Width by Width pixels
520 // Error checking is done in the java layer
Jason Samsc975cf42011-04-28 18:26:48 -0700521 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800522 Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
523 if (texAlloc == NULL) {
524 LOGE("Memory allocation failure");
525 return NULL;
526 }
527
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800528 uint32_t faceSize = t->getDimX();
529 uint32_t strideBytes = faceSize * 6 * t->getElementSizeBytes();
530 uint32_t copySize = faceSize * t->getElementSizeBytes();
531
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800532 uint8_t *sourcePtr = (uint8_t*)data;
Jason Sams366c9c82010-12-08 16:14:36 -0800533 for (uint32_t face = 0; face < 6; face ++) {
534 Adapter2D faceAdapter(rsc, texAlloc);
535 faceAdapter.setFace(face);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800536
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800537 for (uint32_t dI = 0; dI < faceSize; dI ++) {
538 memcpy(faceAdapter.getElement(0, dI), sourcePtr + strideBytes * dI, copySize);
539 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800540
Jason Sams366c9c82010-12-08 16:14:36 -0800541 // Move the data pointer to the next cube face
Alex Sakhartchouk9f8bc4f2011-01-10 15:57:57 -0800542 sourcePtr += copySize;
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800543 }
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800544
Alex Sakhartchoukf8aafcf2011-01-11 14:47:44 -0800545 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
Jason Samsc975cf42011-04-28 18:26:48 -0700546 AllocationGenerateScriptMips(rsc, texAlloc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800547 }
548
Jason Samseb4fe182011-05-26 16:33:01 -0700549 texAlloc->sendDirty(rsc);
Alex Sakhartchouk84e40272010-11-18 15:22:43 -0800550 return texAlloc;
551}
Alex Sakhartchouk099d7d32011-01-28 09:31:47 -0800552
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700553void rsi_AllocationCopy2DRange(Context *rsc,
554 RsAllocation dstAlloc,
555 uint32_t dstXoff, uint32_t dstYoff,
556 uint32_t dstMip, uint32_t dstFace,
557 uint32_t width, uint32_t height,
558 RsAllocation srcAlloc,
559 uint32_t srcXoff, uint32_t srcYoff,
560 uint32_t srcMip, uint32_t srcFace) {
561 Allocation *dst = static_cast<Allocation *>(dstAlloc);
562 Allocation *src= static_cast<Allocation *>(srcAlloc);
563 rsc->mHal.funcs.allocation.allocData2D(rsc, dst, dstXoff, dstYoff, dstMip,
564 (RsAllocationCubemapFace)dstFace,
565 width, height,
566 src, srcXoff, srcYoff,srcMip,
567 (RsAllocationCubemapFace)srcFace);
568}
569
Jason Samsc975cf42011-04-28 18:26:48 -0700570}
571}
572
573const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
574 Allocation *a = static_cast<Allocation *>(va);
575 a->getType()->incUserRef();
576
577 return a->getType();
578}