Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
Jason Sams | bc0ca6b | 2013-02-15 18:13:43 -0800 | [diff] [blame] | 2 | * Copyright (C) 2013 The Android Open Source Project |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 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 | #ifndef ANDROID_STRUCTURED_ALLOCATION_H |
| 18 | #define ANDROID_STRUCTURED_ALLOCATION_H |
| 19 | |
| 20 | #include "rsType.h" |
| 21 | |
Jason Sams | ddceab9 | 2013-08-07 13:02:32 -0700 | [diff] [blame] | 22 | #if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB) |
Stephen Hines | 1664780 | 2013-08-15 16:28:01 -0700 | [diff] [blame] | 23 | #include <ui/GraphicBuffer.h> |
Jason Sams | ddceab9 | 2013-08-07 13:02:32 -0700 | [diff] [blame] | 24 | #include "rsGrallocConsumer.h" |
| 25 | #include "gui/CpuConsumer.h" |
| 26 | #include "gui/GLConsumer.h" |
Stephen Hines | 1664780 | 2013-08-15 16:28:01 -0700 | [diff] [blame] | 27 | #else |
| 28 | struct ANativeWindowBuffer; |
Jason Sams | ddceab9 | 2013-08-07 13:02:32 -0700 | [diff] [blame] | 29 | #endif |
| 30 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 31 | // --------------------------------------------------------------------------- |
| 32 | namespace android { |
Jason Sams | 3522f40 | 2012-03-23 11:47:26 -0700 | [diff] [blame] | 33 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 34 | namespace renderscript { |
| 35 | |
Jason Sams | 5c3e3bc | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 36 | class Program; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 37 | |
Stephen Hines | 1e5149f | 2011-08-08 15:06:40 -0700 | [diff] [blame] | 38 | /***************************************************************************** |
| 39 | * CAUTION |
| 40 | * |
| 41 | * Any layout changes for this class may require a corresponding change to be |
| 42 | * made to frameworks/compile/libbcc/lib/ScriptCRT/rs_core.c, which contains |
| 43 | * a partial copy of the information below. |
| 44 | * |
| 45 | *****************************************************************************/ |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 46 | class Allocation : public ObjectBase { |
Stephen Hines | 1e5149f | 2011-08-08 15:06:40 -0700 | [diff] [blame] | 47 | // The graphics equivalent of malloc. The allocation contains a structure of elements. |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 48 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 49 | public: |
Jason Sams | 807fdc4 | 2012-07-25 17:55:39 -0700 | [diff] [blame] | 50 | const static int MAX_LOD = 16; |
| 51 | |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 52 | struct Hal { |
| 53 | void * drv; |
| 54 | |
| 55 | struct State { |
Alex Sakhartchouk | 064aa7e | 2011-10-18 10:54:29 -0700 | [diff] [blame] | 56 | const Type * type; |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 57 | |
| 58 | uint32_t usageFlags; |
| 59 | RsAllocationMipmapControl mipmapControl; |
| 60 | |
| 61 | // Cached fields from the Type and Element |
| 62 | // to prevent pointer chasing in critical loops. |
Jason Sams | a572aca | 2013-01-09 11:52:26 -0800 | [diff] [blame] | 63 | uint32_t yuv; |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 64 | uint32_t elementSizeBytes; |
| 65 | bool hasMipmaps; |
| 66 | bool hasFaces; |
| 67 | bool hasReferences; |
Tim Murray | 2e1a94d | 2012-11-29 13:12:25 -0800 | [diff] [blame] | 68 | void * userProvidedPtr; |
Jason Sams | cf27eb4 | 2012-02-10 13:24:18 -0800 | [diff] [blame] | 69 | int32_t surfaceTextureID; |
Jason Sams | ddceab9 | 2013-08-07 13:02:32 -0700 | [diff] [blame] | 70 | ANativeWindowBuffer *nativeBuffer; |
| 71 | int64_t timestamp; |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 72 | }; |
| 73 | State state; |
Jason Sams | eb4fe18 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 74 | |
| 75 | struct DrvState { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 76 | struct LodState { |
| 77 | void * mallocPtr; |
| 78 | size_t stride; |
| 79 | uint32_t dimX; |
| 80 | uint32_t dimY; |
| 81 | uint32_t dimZ; |
| 82 | } lod[android::renderscript::Allocation::MAX_LOD]; |
| 83 | size_t faceOffset; |
| 84 | uint32_t lodCount; |
| 85 | uint32_t faceCount; |
Jason Sams | 61656a7 | 2013-09-03 16:21:18 -0700 | [diff] [blame] | 86 | |
| 87 | struct YuvState { |
| 88 | uint32_t shift; |
| 89 | uint32_t step; |
| 90 | } yuv; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 91 | }; |
| 92 | mutable DrvState drvState; |
Jason Sams | eb4fe18 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 93 | |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 94 | }; |
| 95 | Hal mHal; |
| 96 | |
Tim Murray | 3468938 | 2013-03-11 12:12:03 -0700 | [diff] [blame] | 97 | void operator delete(void* ptr); |
| 98 | |
Jason Sams | eb4fe18 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 99 | static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages, |
Jason Sams | 179e9a4 | 2011-11-23 15:02:15 -0800 | [diff] [blame] | 100 | RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE, |
| 101 | void *ptr = 0); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 102 | virtual ~Allocation(); |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 103 | void updateCache(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 104 | |
Alex Sakhartchouk | 064aa7e | 2011-10-18 10:54:29 -0700 | [diff] [blame] | 105 | const Type * getType() const {return mHal.state.type;} |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 106 | |
Jason Sams | 366c9c8 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 107 | void syncAll(Context *rsc, RsAllocationUsageType src); |
| 108 | |
Jason Sams | 96abf81 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 109 | void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len); |
| 110 | |
| 111 | void resize1D(Context *rsc, uint32_t dimX); |
| 112 | void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 113 | |
Stephen Hines | 6ae039b | 2012-01-18 18:46:27 -0800 | [diff] [blame] | 114 | void data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes); |
Jason Sams | 4b45b89 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 115 | void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, |
Tim Murray | 358747a | 2012-11-26 13:52:04 -0800 | [diff] [blame] | 116 | uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride); |
Jason Sams | 3bbc0fd | 2013-04-09 14:16:13 -0700 | [diff] [blame] | 117 | void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, |
| 118 | uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 119 | |
Jason Sams | 807fdc4 | 2012-07-25 17:55:39 -0700 | [diff] [blame] | 120 | void read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes); |
Tim Murray | 358747a | 2012-11-26 13:52:04 -0800 | [diff] [blame] | 121 | void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, |
| 122 | uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride); |
Jason Sams | 3bbc0fd | 2013-04-09 14:16:13 -0700 | [diff] [blame] | 123 | void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, |
| 124 | uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride); |
Jason Sams | 807fdc4 | 2012-07-25 17:55:39 -0700 | [diff] [blame] | 125 | |
Jason Sams | 4b45b89 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 126 | void elementData(Context *rsc, uint32_t x, |
Stephen Hines | 6ae039b | 2012-01-18 18:46:27 -0800 | [diff] [blame] | 127 | const void *data, uint32_t elementOff, size_t sizeBytes); |
Jason Sams | 4b45b89 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 128 | void elementData(Context *rsc, uint32_t x, uint32_t y, |
Stephen Hines | 6ae039b | 2012-01-18 18:46:27 -0800 | [diff] [blame] | 129 | const void *data, uint32_t elementOff, size_t sizeBytes); |
Jason Sams | 5f0c84c | 2010-08-31 13:50:42 -0700 | [diff] [blame] | 130 | |
Jason Sams | 5c3e3bc | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 131 | void addProgramToDirty(const Program *); |
| 132 | void removeProgramToDirty(const Program *); |
Jason Sams | e5ffb87 | 2009-08-09 17:01:55 -0700 | [diff] [blame] | 133 | |
Jason Sams | c21cf40 | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 134 | virtual void dumpLOGV(const char *prefix) const; |
Jason Sams | e3150cf | 2012-07-24 18:10:20 -0700 | [diff] [blame] | 135 | virtual void serialize(Context *rsc, OStream *stream) const; |
Alex Sakhartchouk | b825f67 | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 136 | virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_ALLOCATION; } |
Alex Sakhartchouk | fb6b614 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 137 | static Allocation *createFromStream(Context *rsc, IStream *stream); |
Jason Sams | c21cf40 | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 138 | |
Jason Sams | b89b0b7 | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 139 | bool getIsScript() const { |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 140 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0; |
Jason Sams | b89b0b7 | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 141 | } |
Jason Sams | ebc5019 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 142 | bool getIsTexture() const { |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 143 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0; |
Jason Sams | ebc5019 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 144 | } |
Alex Sakhartchouk | 7d9c5ff | 2011-04-01 14:19:01 -0700 | [diff] [blame] | 145 | bool getIsRenderTarget() const { |
| 146 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0; |
| 147 | } |
Jason Sams | ebc5019 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 148 | bool getIsBufferObject() const { |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 149 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0; |
Jason Sams | ebc5019 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 150 | } |
Jason Sams | 760f1f7 | 2010-06-25 12:45:41 -0700 | [diff] [blame] | 151 | |
Jason Sams | 96abf81 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 152 | void incRefs(const void *ptr, size_t ct, size_t startOff = 0) const; |
| 153 | void decRefs(const void *ptr, size_t ct, size_t startOff = 0) const; |
Jason Sams | a36c50a | 2014-06-17 12:06:06 -0700 | [diff] [blame] | 154 | virtual void callUpdateCacheObject(const Context *rsc, void *dstObj) const; |
Jason Sams | c7cec1e | 2011-08-18 18:01:33 -0700 | [diff] [blame] | 155 | virtual bool freeChildren(); |
Jason Sams | e3929c9 | 2010-08-09 18:13:33 -0700 | [diff] [blame] | 156 | |
Jason Sams | eb4fe18 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 157 | void sendDirty(const Context *rsc) const; |
Jason Sams | b89b0b7 | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 158 | bool getHasGraphicsMipmaps() const { |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 159 | return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE; |
Jason Sams | b89b0b7 | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 160 | } |
| 161 | |
Jason Sams | 733396b | 2013-02-22 12:46:18 -0800 | [diff] [blame] | 162 | void * getSurface(const Context *rsc); |
Jason Sams | 7ac2a4d | 2012-02-15 12:04:24 -0800 | [diff] [blame] | 163 | void setSurface(const Context *rsc, RsNativeWindow sur); |
| 164 | void ioSend(const Context *rsc); |
| 165 | void ioReceive(const Context *rsc); |
Jason Sams | 5c3e3bc | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 166 | |
Jason Sams | b8a94e2 | 2014-02-24 17:52:32 -0800 | [diff] [blame] | 167 | void * getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face, |
| 168 | uint32_t z, uint32_t array, size_t *stride); |
| 169 | |
Chris Wailes | 4b3c34e | 2014-06-11 12:00:29 -0700 | [diff] [blame] | 170 | bool hasSameDims(const Allocation *Other) const; |
| 171 | |
Alex Sakhartchouk | 1e5168d | 2010-09-01 16:34:48 -0700 | [diff] [blame] | 172 | protected: |
Jason Sams | 5c3e3bc | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 173 | Vector<const Program *> mToDirtyList; |
Alex Sakhartchouk | 064aa7e | 2011-10-18 10:54:29 -0700 | [diff] [blame] | 174 | ObjectBaseRef<const Type> mType; |
| 175 | void setType(const Type *t) { |
| 176 | mType.set(t); |
| 177 | mHal.state.type = t; |
| 178 | } |
Jason Sams | 5c3e3bc | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 179 | |
Jason Sams | ddceab9 | 2013-08-07 13:02:32 -0700 | [diff] [blame] | 180 | #if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB) |
| 181 | class NewBufferListener : public android::ConsumerBase::FrameAvailableListener { |
| 182 | public: |
| 183 | const android::renderscript::Context *rsc; |
| 184 | const android::renderscript::Allocation *alloc; |
| 185 | |
| 186 | virtual void onFrameAvailable(); |
| 187 | }; |
| 188 | |
| 189 | sp<NewBufferListener> mBufferListener; |
| 190 | sp< GrallocConsumer > mGrallocConsumer; |
| 191 | #endif |
| 192 | |
| 193 | |
Jason Sams | fa84da2 | 2010-03-01 15:31:04 -0800 | [diff] [blame] | 194 | private: |
Jason Sams | c7cec1e | 2011-08-18 18:01:33 -0700 | [diff] [blame] | 195 | void freeChildrenUnlocked(); |
Jason Sams | 179e9a4 | 2011-11-23 15:02:15 -0800 | [diff] [blame] | 196 | Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr); |
Alex Sakhartchouk | 2d1220c | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 197 | |
| 198 | uint32_t getPackedSize() const; |
Jason Sams | 807fdc4 | 2012-07-25 17:55:39 -0700 | [diff] [blame] | 199 | static void writePackedData(Context *rsc, const Type *type, uint8_t *dst, |
| 200 | const uint8_t *src, bool dstPadded); |
Jason Sams | e3150cf | 2012-07-24 18:10:20 -0700 | [diff] [blame] | 201 | void unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize); |
| 202 | void packVec3Allocation(Context *rsc, OStream *stream) const; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | } |
| 206 | } |
| 207 | #endif |