rsAllocation.cpp revision 03c155b6d20e99ee5c7abaae69a10c694106a83e
1/*
2 * Copyright (C) 2013 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 */
16
17#include "rsContext.h"
18#include "rsAllocation.h"
19#include "rsAdapter.h"
20#include "rs_hal.h"
21
22#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
23#include "system/window.h"
24#include "gui/GLConsumer.h"
25#endif
26
27using namespace android;
28using namespace android::renderscript;
29
30Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
31                       RsAllocationMipmapControl mc, void * ptr)
32    : ObjectBase(rsc) {
33
34    memset(&mHal, 0, sizeof(mHal));
35    mHal.state.mipmapControl = RS_ALLOCATION_MIPMAP_NONE;
36    mHal.state.usageFlags = usages;
37    mHal.state.mipmapControl = mc;
38    mHal.state.userProvidedPtr = ptr;
39
40    setType(type);
41    updateCache();
42}
43
44void Allocation::operator delete(void* ptr) {
45    if (ptr) {
46        Allocation *a = (Allocation*) ptr;
47        a->getContext()->mHal.funcs.freeRuntimeMem(ptr);
48    }
49}
50
51Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
52                              RsAllocationMipmapControl mc, void * ptr) {
53    // Allocation objects must use allocator specified by the driver
54    void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Allocation), 0);
55
56    if (!allocMem) {
57        rsc->setError(RS_ERROR_FATAL_DRIVER, "Couldn't allocate memory for Allocation");
58        return NULL;
59    }
60
61    Allocation *a = new (allocMem) Allocation(rsc, type, usages, mc, ptr);
62
63    if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
64        rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
65        delete a;
66        return NULL;
67    }
68
69    return a;
70}
71
72void Allocation::updateCache() {
73    const Type *type = mHal.state.type;
74    mHal.state.yuv = type->getDimYuv();
75    mHal.state.hasFaces = type->getDimFaces();
76    mHal.state.hasMipmaps = type->getDimLOD();
77    mHal.state.elementSizeBytes = type->getElementSizeBytes();
78    mHal.state.hasReferences = mHal.state.type->getElement()->getHasReferences();
79}
80
81Allocation::~Allocation() {
82#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
83    if (mGrallocConsumer.get()) {
84        mGrallocConsumer->unlockBuffer();
85        mGrallocConsumer = NULL;
86    }
87#endif
88
89    freeChildrenUnlocked();
90    mRSC->mHal.funcs.allocation.destroy(mRSC, this);
91}
92
93void Allocation::syncAll(Context *rsc, RsAllocationUsageType src) {
94    rsc->mHal.funcs.allocation.syncAll(rsc, this, src);
95}
96
97void * Allocation::getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face,
98                          uint32_t z, uint32_t array, size_t *stride) {
99
100    if ((lod >= mHal.drvState.lodCount) ||
101        (z && (z >= mHal.drvState.lod[lod].dimZ)) ||
102        ((face != RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X) && !mHal.state.hasFaces) ||
103        (array != 0)) {
104        return NULL;
105    }
106
107    size_t s = 0;
108    //void *ptr = mRSC->mHal.funcs.allocation.lock1D(rsc, this);
109    if ((stride != NULL) && mHal.drvState.lod[0].dimY) {
110        *stride = mHal.drvState.lod[lod].stride;
111    }
112    return mHal.drvState.lod[lod].mallocPtr;
113}
114
115void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod,
116                         uint32_t count, const void *data, size_t sizeBytes) {
117    const size_t eSize = mHal.state.type->getElementSizeBytes();
118
119    if ((count * eSize) != sizeBytes) {
120        char buf[1024];
121        sprintf(buf, "Allocation::subData called with mismatched size expected %zu, got %zu",
122                (count * eSize), sizeBytes);
123        rsc->setError(RS_ERROR_BAD_VALUE, buf);
124        mHal.state.type->dumpLOGV("type info");
125        return;
126    }
127
128    rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
129    sendDirty(rsc);
130}
131
132void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
133                      uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
134    rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
135    sendDirty(rsc);
136}
137
138void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
139                      uint32_t lod,
140                      uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) {
141    rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
142    sendDirty(rsc);
143}
144
145void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod,
146                      uint32_t count, void *data, size_t sizeBytes) {
147    const size_t eSize = mHal.state.type->getElementSizeBytes();
148
149    if ((count * eSize) != sizeBytes) {
150        char buf[1024];
151        sprintf(buf, "Allocation::read called with mismatched size expected %zu, got %zu",
152                (count * eSize), sizeBytes);
153        rsc->setError(RS_ERROR_BAD_VALUE, buf);
154        mHal.state.type->dumpLOGV("type info");
155        return;
156    }
157
158    rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
159}
160
161void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
162                      uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) {
163    const size_t eSize = mHal.state.elementSizeBytes;
164    const size_t lineSize = eSize * w;
165    if (!stride) {
166        stride = lineSize;
167    } else {
168        if ((lineSize * h) != sizeBytes) {
169            char buf[1024];
170            sprintf(buf, "Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes);
171            rsc->setError(RS_ERROR_BAD_VALUE, buf);
172            return;
173        }
174    }
175
176    rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
177}
178
179void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
180                      uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) {
181    const size_t eSize = mHal.state.elementSizeBytes;
182    const size_t lineSize = eSize * w;
183    if (!stride) {
184        stride = lineSize;
185    }
186
187    rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
188
189}
190
191void Allocation::elementData(Context *rsc, uint32_t x, const void *data,
192                                uint32_t cIdx, size_t sizeBytes) {
193    size_t eSize = mHal.state.elementSizeBytes;
194
195    if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
196        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
197        return;
198    }
199
200    if (x >= mHal.drvState.lod[0].dimX) {
201        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
202        return;
203    }
204
205    const Element * e = mHal.state.type->getElement()->getField(cIdx);
206    uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
207    if (sizeBytes != e->getSizeBytes() * elemArraySize) {
208        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
209        return;
210    }
211
212    rsc->mHal.funcs.allocation.elementData1D(rsc, this, x, data, cIdx, sizeBytes);
213    sendDirty(rsc);
214}
215
216void Allocation::elementData(Context *rsc, uint32_t x, uint32_t y,
217                                const void *data, uint32_t cIdx, size_t sizeBytes) {
218    size_t eSize = mHal.state.elementSizeBytes;
219
220    if (x >= mHal.drvState.lod[0].dimX) {
221        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
222        return;
223    }
224
225    if (y >= mHal.drvState.lod[0].dimY) {
226        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData X offset out of range.");
227        return;
228    }
229
230    if (cIdx >= mHal.state.type->getElement()->getFieldCount()) {
231        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData component out of range.");
232        return;
233    }
234
235    const Element * e = mHal.state.type->getElement()->getField(cIdx);
236    uint32_t elemArraySize = mHal.state.type->getElement()->getFieldArraySize(cIdx);
237    if (sizeBytes != e->getSizeBytes() * elemArraySize) {
238        rsc->setError(RS_ERROR_BAD_VALUE, "subElementData bad size.");
239        return;
240    }
241
242    rsc->mHal.funcs.allocation.elementData2D(rsc, this, x, y, data, cIdx, sizeBytes);
243    sendDirty(rsc);
244}
245
246void Allocation::addProgramToDirty(const Program *p) {
247    mToDirtyList.push(p);
248}
249
250void Allocation::removeProgramToDirty(const Program *p) {
251    for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
252        if (mToDirtyList[ct] == p) {
253            mToDirtyList.removeAt(ct);
254            return;
255        }
256    }
257    rsAssert(0);
258}
259
260void Allocation::dumpLOGV(const char *prefix) const {
261    ObjectBase::dumpLOGV(prefix);
262    char buf[1024];
263
264    if ((strlen(prefix) + 10) < sizeof(buf)) {
265        sprintf(buf, "%s type ", prefix);
266        if (mHal.state.type) {
267            mHal.state.type->dumpLOGV(buf);
268        }
269    }
270    ALOGV("%s allocation ptr=%p  mUsageFlags=0x04%x, mMipmapControl=0x%04x",
271         prefix, mHal.drvState.lod[0].mallocPtr, mHal.state.usageFlags, mHal.state.mipmapControl);
272}
273
274uint32_t Allocation::getPackedSize() const {
275    uint32_t numItems = mHal.state.type->getCellCount();
276    return numItems * mHal.state.type->getElement()->getSizeBytesUnpadded();
277}
278
279void Allocation::writePackedData(Context *rsc, const Type *type,
280                                 uint8_t *dst, const uint8_t *src, bool dstPadded) {
281    const Element *elem = type->getElement();
282    uint32_t unpaddedBytes = elem->getSizeBytesUnpadded();
283    uint32_t paddedBytes = elem->getSizeBytes();
284    uint32_t numItems = type->getPackedSizeBytes() / paddedBytes;
285
286    uint32_t srcInc = !dstPadded ? paddedBytes : unpaddedBytes;
287    uint32_t dstInc =  dstPadded ? paddedBytes : unpaddedBytes;
288
289    // no sub-elements
290    uint32_t fieldCount = elem->getFieldCount();
291    if (fieldCount == 0) {
292        for (uint32_t i = 0; i < numItems; i ++) {
293            memcpy(dst, src, unpaddedBytes);
294            src += srcInc;
295            dst += dstInc;
296        }
297        return;
298    }
299
300    // Cache offsets
301    uint32_t *offsetsPadded = new uint32_t[fieldCount];
302    uint32_t *offsetsUnpadded = new uint32_t[fieldCount];
303    uint32_t *sizeUnpadded = new uint32_t[fieldCount];
304
305    for (uint32_t i = 0; i < fieldCount; i++) {
306        offsetsPadded[i] = elem->getFieldOffsetBytes(i);
307        offsetsUnpadded[i] = elem->getFieldOffsetBytesUnpadded(i);
308        sizeUnpadded[i] = elem->getField(i)->getSizeBytesUnpadded();
309    }
310
311    uint32_t *srcOffsets = !dstPadded ? offsetsPadded : offsetsUnpadded;
312    uint32_t *dstOffsets =  dstPadded ? offsetsPadded : offsetsUnpadded;
313
314    // complex elements, need to copy subelem after subelem
315    for (uint32_t i = 0; i < numItems; i ++) {
316        for (uint32_t fI = 0; fI < fieldCount; fI++) {
317            memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
318        }
319        src += srcInc;
320        dst += dstInc;
321    }
322
323    delete[] offsetsPadded;
324    delete[] offsetsUnpadded;
325    delete[] sizeUnpadded;
326}
327
328void Allocation::unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize) {
329    const uint8_t *src = (const uint8_t*)data;
330    uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this);
331
332    writePackedData(rsc, getType(), dst, src, true);
333    rsc->mHal.funcs.allocation.unlock1D(rsc, this);
334}
335
336void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
337    uint32_t paddedBytes = getType()->getElement()->getSizeBytes();
338    uint32_t unpaddedBytes = getType()->getElement()->getSizeBytesUnpadded();
339    uint32_t numItems = mHal.state.type->getCellCount();
340
341    const uint8_t *src = (const uint8_t*)rsc->mHal.funcs.allocation.lock1D(rsc, this);
342    uint8_t *dst = new uint8_t[numItems * unpaddedBytes];
343
344    writePackedData(rsc, getType(), dst, src, false);
345    stream->addByteArray(dst, getPackedSize());
346
347    delete[] dst;
348    rsc->mHal.funcs.allocation.unlock1D(rsc, this);
349}
350
351void Allocation::serialize(Context *rsc, OStream *stream) const {
352    // Need to identify ourselves
353    stream->addU32((uint32_t)getClassId());
354    stream->addString(getName());
355
356    // First thing we need to serialize is the type object since it will be needed
357    // to initialize the class
358    mHal.state.type->serialize(rsc, stream);
359
360    uint32_t dataSize = mHal.state.type->getPackedSizeBytes();
361    // 3 element vectors are padded to 4 in memory, but padding isn't serialized
362    uint32_t packedSize = getPackedSize();
363    // Write how much data we are storing
364    stream->addU32(packedSize);
365    if (dataSize == packedSize) {
366        // Now write the data
367        stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
368        rsc->mHal.funcs.allocation.unlock1D(rsc, this);
369    } else {
370        // Now write the data
371        packVec3Allocation(rsc, stream);
372    }
373}
374
375Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) {
376    // First make sure we are reading the correct object
377    RsA3DClassID classID = (RsA3DClassID)stream->loadU32();
378    if (classID != RS_A3D_CLASS_ID_ALLOCATION) {
379        rsc->setError(RS_ERROR_FATAL_DRIVER,
380                      "allocation loading failed due to corrupt file. (invalid id)\n");
381        return NULL;
382    }
383
384    const char *name = stream->loadString();
385
386    Type *type = Type::createFromStream(rsc, stream);
387    if (!type) {
388        return NULL;
389    }
390    type->compute();
391
392    Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT);
393    type->decUserRef();
394
395    // Number of bytes we wrote out for this allocation
396    uint32_t dataSize = stream->loadU32();
397    // 3 element vectors are padded to 4 in memory, but padding isn't serialized
398    uint32_t packedSize = alloc->getPackedSize();
399    if (dataSize != type->getPackedSizeBytes() &&
400        dataSize != packedSize) {
401        rsc->setError(RS_ERROR_FATAL_DRIVER,
402                      "allocation loading failed due to corrupt file. (invalid size)\n");
403        ObjectBase::checkDelete(alloc);
404        ObjectBase::checkDelete(type);
405        return NULL;
406    }
407
408    alloc->assignName(name);
409    if (dataSize == type->getPackedSizeBytes()) {
410        uint32_t count = dataSize / type->getElementSizeBytes();
411        // Read in all of our allocation data
412        alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
413    } else {
414        alloc->unpackVec3Allocation(rsc, stream->getPtr() + stream->getPos(), dataSize);
415    }
416    stream->reset(stream->getPos() + dataSize);
417
418    return alloc;
419}
420
421void Allocation::sendDirty(const Context *rsc) const {
422#ifndef RS_COMPATIBILITY_LIB
423    for (size_t ct=0; ct < mToDirtyList.size(); ct++) {
424        mToDirtyList[ct]->forceDirty();
425    }
426#endif
427    mRSC->mHal.funcs.allocation.markDirty(rsc, this);
428}
429
430void Allocation::incRefs(const void *ptr, size_t ct, size_t startOff) const {
431    mHal.state.type->incRefs(ptr, ct, startOff);
432}
433
434void Allocation::decRefs(const void *ptr, size_t ct, size_t startOff) const {
435    if (!mHal.state.hasReferences || !getIsScript()) {
436        return;
437    }
438    mHal.state.type->decRefs(ptr, ct, startOff);
439}
440
441void Allocation::freeChildrenUnlocked () {
442    void *ptr = mRSC->mHal.funcs.allocation.lock1D(mRSC, this);
443    decRefs(ptr, mHal.state.type->getCellCount(), 0);
444    mRSC->mHal.funcs.allocation.unlock1D(mRSC, this);
445}
446
447bool Allocation::freeChildren() {
448    if (mHal.state.hasReferences) {
449        incSysRef();
450        freeChildrenUnlocked();
451        return decSysRef();
452    }
453    return false;
454}
455
456void Allocation::copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) {
457}
458
459void Allocation::resize1D(Context *rsc, uint32_t dimX) {
460    uint32_t oldDimX = mHal.drvState.lod[0].dimX;
461    if (dimX == oldDimX) {
462        return;
463    }
464
465    ObjectBaseRef<Type> t = mHal.state.type->cloneAndResize1D(rsc, dimX);
466    if (dimX < oldDimX) {
467        decRefs(rsc->mHal.funcs.allocation.lock1D(rsc, this), oldDimX - dimX, dimX);
468        rsc->mHal.funcs.allocation.unlock1D(rsc, this);
469    }
470    rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
471    setType(t.get());
472    updateCache();
473}
474
475void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
476    rsc->setError(RS_ERROR_FATAL_DRIVER, "resize2d not implemented");
477}
478
479#ifndef RS_COMPATIBILITY_LIB
480void Allocation::NewBufferListener::onFrameAvailable() {
481    intptr_t ip = (intptr_t)alloc;
482    rsc->sendMessageToClient(NULL, RS_MESSAGE_TO_CLIENT_NEW_BUFFER, ip, 0, true);
483}
484#endif
485
486void * Allocation::getSurface(const Context *rsc) {
487#ifndef RS_COMPATIBILITY_LIB
488    // Configure GrallocConsumer to be in asynchronous mode
489    sp<IGraphicBufferProducer> bp;
490    sp<IGraphicBufferConsumer> bc;
491    BufferQueue::createBufferQueue(&bp, &bc);
492    mGrallocConsumer = new GrallocConsumer(this, bc);
493    bp->incStrong(NULL);
494
495    mBufferListener = new NewBufferListener();
496    mBufferListener->rsc = rsc;
497    mBufferListener->alloc = this;
498
499    mGrallocConsumer->setFrameAvailableListener(mBufferListener);
500    return bp.get();
501#else
502    return NULL;
503#endif
504    //return rsc->mHal.funcs.allocation.getSurface(rsc, this);
505}
506
507void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) {
508    ANativeWindow *nw = (ANativeWindow *)sur;
509    rsc->mHal.funcs.allocation.setSurface(rsc, this, nw);
510}
511
512void Allocation::ioSend(const Context *rsc) {
513    rsc->mHal.funcs.allocation.ioSend(rsc, this);
514}
515
516void Allocation::ioReceive(const Context *rsc) {
517    void *ptr = NULL;
518    size_t stride = 0;
519#ifndef RS_COMPATIBILITY_LIB
520    if (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) {
521        status_t ret = mGrallocConsumer->lockNextBuffer();
522
523        if (ret == OK) {
524            rsc->mHal.funcs.allocation.ioReceive(rsc, this);
525        } else if (ret == BAD_VALUE) {
526            // No new frame, don't do anything
527        } else {
528            rsc->setError(RS_ERROR_DRIVER, "Error receiving IO input buffer.");
529        }
530
531    }
532#endif
533}
534
535
536/////////////////
537//
538
539namespace android {
540namespace renderscript {
541
542void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
543    Allocation *a = static_cast<Allocation *>(va);
544    a->sendDirty(rsc);
545    a->syncAll(rsc, src);
546}
547
548void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
549    Allocation *alloc = static_cast<Allocation *>(va);
550    rsc->mHal.funcs.allocation.generateMipmaps(rsc, alloc);
551}
552
553void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
554    Allocation *a = static_cast<Allocation *>(va);
555    const Type * t = a->getType();
556    a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
557            t->getDimX(), t->getDimY(), data, sizeBytes, 0);
558}
559
560void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
561                          uint32_t count, const void *data, size_t sizeBytes) {
562    Allocation *a = static_cast<Allocation *>(va);
563    a->data(rsc, xoff, lod, count, data, sizeBytes);
564}
565
566void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face,
567                                 const void *data, size_t sizeBytes, size_t eoff) {
568    Allocation *a = static_cast<Allocation *>(va);
569    a->elementData(rsc, x, y, data, eoff, sizeBytes);
570}
571
572void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod,
573                                 const void *data, size_t sizeBytes, size_t eoff) {
574    Allocation *a = static_cast<Allocation *>(va);
575    a->elementData(rsc, x, data, eoff, sizeBytes);
576}
577
578void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
579                          uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) {
580    Allocation *a = static_cast<Allocation *>(va);
581    a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
582}
583
584void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
585                          uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) {
586    Allocation *a = static_cast<Allocation *>(va);
587    a->data(rsc, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
588}
589
590
591void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
592    Allocation *a = static_cast<Allocation *>(va);
593    const Type * t = a->getType();
594    if(t->getDimY()) {
595        a->read(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
596                t->getDimX(), t->getDimY(), data, sizeBytes, 0);
597    } else {
598        a->read(rsc, 0, 0, t->getDimX(), data, sizeBytes);
599    }
600
601}
602
603void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) {
604    Allocation *a = static_cast<Allocation *>(va);
605    a->resize1D(rsc, dimX);
606}
607
608void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
609    Allocation *a = static_cast<Allocation *>(va);
610    a->resize2D(rsc, dimX, dimY);
611}
612
613RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype,
614                                       RsAllocationMipmapControl mipmaps,
615                                       uint32_t usages, uintptr_t ptr) {
616    Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
617    if (!alloc) {
618        return NULL;
619    }
620    alloc->incUserRef();
621    return alloc;
622}
623
624RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype,
625                                            RsAllocationMipmapControl mipmaps,
626                                            const void *data, size_t sizeBytes, uint32_t usages) {
627    Type *t = static_cast<Type *>(vtype);
628
629    RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
630    Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
631    if (texAlloc == NULL) {
632        ALOGE("Memory allocation failure");
633        return NULL;
634    }
635
636    texAlloc->data(rsc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X,
637                   t->getDimX(), t->getDimY(), data, sizeBytes, 0);
638    if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
639        rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
640    }
641
642    texAlloc->sendDirty(rsc);
643    return texAlloc;
644}
645
646RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype,
647                                                RsAllocationMipmapControl mipmaps,
648                                                const void *data, size_t sizeBytes, uint32_t usages) {
649    Type *t = static_cast<Type *>(vtype);
650
651    // Cubemap allocation's faces should be Width by Width each.
652    // Source data should have 6 * Width by Width pixels
653    // Error checking is done in the java layer
654    RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
655    Allocation *texAlloc = static_cast<Allocation *>(vTexAlloc);
656    if (texAlloc == NULL) {
657        ALOGE("Memory allocation failure");
658        return NULL;
659    }
660
661    uint32_t faceSize = t->getDimX();
662    uint32_t strideBytes = faceSize * 6 * t->getElementSizeBytes();
663    uint32_t copySize = faceSize * t->getElementSizeBytes();
664
665    uint8_t *sourcePtr = (uint8_t*)data;
666    for (uint32_t face = 0; face < 6; face ++) {
667        for (uint32_t dI = 0; dI < faceSize; dI ++) {
668            texAlloc->data(rsc, 0, dI, 0, (RsAllocationCubemapFace)face,
669                           t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize, 0);
670        }
671
672        // Move the data pointer to the next cube face
673        sourcePtr += copySize;
674    }
675
676    if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
677        rsc->mHal.funcs.allocation.generateMipmaps(rsc, texAlloc);
678    }
679
680    texAlloc->sendDirty(rsc);
681    return texAlloc;
682}
683
684void rsi_AllocationCopy2DRange(Context *rsc,
685                               RsAllocation dstAlloc,
686                               uint32_t dstXoff, uint32_t dstYoff,
687                               uint32_t dstMip, uint32_t dstFace,
688                               uint32_t width, uint32_t height,
689                               RsAllocation srcAlloc,
690                               uint32_t srcXoff, uint32_t srcYoff,
691                               uint32_t srcMip, uint32_t srcFace) {
692    Allocation *dst = static_cast<Allocation *>(dstAlloc);
693    Allocation *src= static_cast<Allocation *>(srcAlloc);
694    rsc->mHal.funcs.allocation.allocData2D(rsc, dst, dstXoff, dstYoff, dstMip,
695                                           (RsAllocationCubemapFace)dstFace,
696                                           width, height,
697                                           src, srcXoff, srcYoff,srcMip,
698                                           (RsAllocationCubemapFace)srcFace);
699}
700
701void rsi_AllocationCopy3DRange(Context *rsc,
702                               RsAllocation dstAlloc,
703                               uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
704                               uint32_t dstMip,
705                               uint32_t width, uint32_t height, uint32_t depth,
706                               RsAllocation srcAlloc,
707                               uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
708                               uint32_t srcMip) {
709    Allocation *dst = static_cast<Allocation *>(dstAlloc);
710    Allocation *src= static_cast<Allocation *>(srcAlloc);
711    rsc->mHal.funcs.allocation.allocData3D(rsc, dst, dstXoff, dstYoff, dstZoff, dstMip,
712                                           width, height, depth,
713                                           src, srcXoff, srcYoff, srcZoff, srcMip);
714}
715
716
717void * rsi_AllocationGetSurface(Context *rsc, RsAllocation valloc) {
718    Allocation *alloc = static_cast<Allocation *>(valloc);
719    void *s = alloc->getSurface(rsc);
720    return s;
721}
722
723void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) {
724    Allocation *alloc = static_cast<Allocation *>(valloc);
725    alloc->setSurface(rsc, sur);
726}
727
728void rsi_AllocationIoSend(Context *rsc, RsAllocation valloc) {
729    Allocation *alloc = static_cast<Allocation *>(valloc);
730    alloc->ioSend(rsc);
731}
732
733void rsi_AllocationIoReceive(Context *rsc, RsAllocation valloc) {
734    Allocation *alloc = static_cast<Allocation *>(valloc);
735    alloc->ioReceive(rsc);
736}
737
738void rsi_AllocationGetPointer(Context *rsc, RsAllocation valloc,
739                          uint32_t lod, RsAllocationCubemapFace face,
740                          uint32_t z, uint32_t array, size_t *stride, size_t strideLen) {
741    Allocation *alloc = static_cast<Allocation *>(valloc);
742    rsAssert(strideLen == sizeof(size_t));
743
744    alloc->getPointer(rsc, lod, face, z, array, stride);
745}
746
747void rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
748                          uint32_t count, void *data, size_t sizeBytes) {
749    Allocation *a = static_cast<Allocation *>(va);
750    rsc->mHal.funcs.allocation.read1D(rsc, a, xoff, lod, count, data, sizeBytes);
751}
752
753void rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
754                          uint32_t lod, RsAllocationCubemapFace face, uint32_t w,
755                          uint32_t h, void *data, size_t sizeBytes, size_t stride) {
756    Allocation *a = static_cast<Allocation *>(va);
757    a->read(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
758}
759
760}
761}
762
763extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
764    Allocation *a = static_cast<Allocation *>(va);
765    a->getType()->incUserRef();
766
767    return a->getType();
768}
769