blob: b0f2f9e68a39e09c554e476c969f43e77c359e3c [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
Jason Samsbc0ca6b2013-02-15 18:13:43 -08002 * Copyright (C) 2013 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 */
16
17#ifndef ANDROID_STRUCTURED_ALLOCATION_H
18#define ANDROID_STRUCTURED_ALLOCATION_H
19
20#include "rsType.h"
21
Jason Samsddceab92013-08-07 13:02:32 -070022#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
Stephen Hines16647802013-08-15 16:28:01 -070023#include <ui/GraphicBuffer.h>
Jason Samsddceab92013-08-07 13:02:32 -070024#include "rsGrallocConsumer.h"
25#include "gui/CpuConsumer.h"
26#include "gui/GLConsumer.h"
Stephen Hines16647802013-08-15 16:28:01 -070027#else
28struct ANativeWindowBuffer;
Jason Samsddceab92013-08-07 13:02:32 -070029#endif
30
Jason Sams326e0dd2009-05-22 14:03:28 -070031// ---------------------------------------------------------------------------
32namespace android {
Jason Sams3522f402012-03-23 11:47:26 -070033
Jason Sams326e0dd2009-05-22 14:03:28 -070034namespace renderscript {
35
Jason Sams5c3e3bc2009-10-26 15:19:28 -070036class Program;
Jason Sams326e0dd2009-05-22 14:03:28 -070037
Stephen Hines1e5149f2011-08-08 15:06:40 -070038/*****************************************************************************
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 Sakhartchoukafb743a2010-11-09 17:00:54 -080046class Allocation : public ObjectBase {
Stephen Hines1e5149f2011-08-08 15:06:40 -070047 // The graphics equivalent of malloc. The allocation contains a structure of elements.
Jason Sams326e0dd2009-05-22 14:03:28 -070048
Jason Sams326e0dd2009-05-22 14:03:28 -070049public:
Jason Sams807fdc42012-07-25 17:55:39 -070050 const static int MAX_LOD = 16;
51
Jason Samsbad80742011-03-16 16:29:28 -070052 struct Hal {
53 void * drv;
54
55 struct State {
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070056 const Type * type;
Jason Samsbad80742011-03-16 16:29:28 -070057
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 Samsa572aca2013-01-09 11:52:26 -080063 uint32_t yuv;
Jason Samsbad80742011-03-16 16:29:28 -070064 uint32_t elementSizeBytes;
65 bool hasMipmaps;
66 bool hasFaces;
67 bool hasReferences;
Tim Murray2e1a94d2012-11-29 13:12:25 -080068 void * userProvidedPtr;
Jason Samscf27eb42012-02-10 13:24:18 -080069 int32_t surfaceTextureID;
Jason Samsddceab92013-08-07 13:02:32 -070070 ANativeWindowBuffer *nativeBuffer;
71 int64_t timestamp;
Jason Samsbad80742011-03-16 16:29:28 -070072 };
73 State state;
Jason Samseb4fe182011-05-26 16:33:01 -070074
75 struct DrvState {
Jason Sams709a0972012-11-15 18:18:04 -080076 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 Sams61656a72013-09-03 16:21:18 -070086
87 struct YuvState {
88 uint32_t shift;
89 uint32_t step;
90 } yuv;
Jason Sams709a0972012-11-15 18:18:04 -080091 };
92 mutable DrvState drvState;
Jason Samseb4fe182011-05-26 16:33:01 -070093
Jason Samsbad80742011-03-16 16:29:28 -070094 };
95 Hal mHal;
96
Tim Murray34689382013-03-11 12:12:03 -070097 void operator delete(void* ptr);
98
Jason Samseb4fe182011-05-26 16:33:01 -070099 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -0800100 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE,
101 void *ptr = 0);
Jason Sams326e0dd2009-05-22 14:03:28 -0700102 virtual ~Allocation();
Jason Samsbad80742011-03-16 16:29:28 -0700103 void updateCache();
Jason Sams326e0dd2009-05-22 14:03:28 -0700104
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700105 const Type * getType() const {return mHal.state.type;}
Jason Sams326e0dd2009-05-22 14:03:28 -0700106
Jason Sams366c9c82010-12-08 16:14:36 -0800107 void syncAll(Context *rsc, RsAllocationUsageType src);
108
Jason Sams96abf812010-10-05 13:32:49 -0700109 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 Sams326e0dd2009-05-22 14:03:28 -0700113
Stephen Hines6ae039b2012-01-18 18:46:27 -0800114 void data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes);
Jason Sams4b45b892010-12-29 14:31:29 -0800115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800116 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride);
Jason Sams3bbc0fd2013-04-09 14:16:13 -0700117 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 Sams326e0dd2009-05-22 14:03:28 -0700119
Jason Sams807fdc42012-07-25 17:55:39 -0700120 void read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes);
Tim Murray358747a2012-11-26 13:52:04 -0800121 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 Sams3bbc0fd2013-04-09 14:16:13 -0700123 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 Sams807fdc42012-07-25 17:55:39 -0700125
Jason Sams4b45b892010-12-29 14:31:29 -0800126 void elementData(Context *rsc, uint32_t x,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800127 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams4b45b892010-12-29 14:31:29 -0800128 void elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800129 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700130
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
Jason Samse5ffb872009-08-09 17:01:55 -0700133
Jason Samsc21cf402009-11-17 17:26:46 -0800134 virtual void dumpLOGV(const char *prefix) const;
Jason Samse3150cf2012-07-24 18:10:20 -0700135 virtual void serialize(Context *rsc, OStream *stream) const;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700136 virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_ALLOCATION; }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700137 static Allocation *createFromStream(Context *rsc, IStream *stream);
Jason Samsc21cf402009-11-17 17:26:46 -0800138
Jason Samsb89b0b72010-12-13 17:11:21 -0800139 bool getIsScript() const {
Jason Samsbad80742011-03-16 16:29:28 -0700140 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0;
Jason Samsb89b0b72010-12-13 17:11:21 -0800141 }
Jason Samsebc50192010-12-13 15:32:35 -0800142 bool getIsTexture() const {
Jason Samsbad80742011-03-16 16:29:28 -0700143 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800144 }
Alex Sakhartchouk7d9c5ff2011-04-01 14:19:01 -0700145 bool getIsRenderTarget() const {
146 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0;
147 }
Jason Samsebc50192010-12-13 15:32:35 -0800148 bool getIsBufferObject() const {
Jason Samsbad80742011-03-16 16:29:28 -0700149 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800150 }
Jason Sams760f1f72010-06-25 12:45:41 -0700151
Jason Sams96abf812010-10-05 13:32:49 -0700152 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 Samsc7cec1e2011-08-18 18:01:33 -0700154 virtual bool freeChildren();
Jason Samse3929c92010-08-09 18:13:33 -0700155
Jason Samseb4fe182011-05-26 16:33:01 -0700156 void sendDirty(const Context *rsc) const;
Jason Samsb89b0b72010-12-13 17:11:21 -0800157 bool getHasGraphicsMipmaps() const {
Jason Samsbad80742011-03-16 16:29:28 -0700158 return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE;
Jason Samsb89b0b72010-12-13 17:11:21 -0800159 }
160
Jason Sams733396b2013-02-22 12:46:18 -0800161 void * getSurface(const Context *rsc);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800162 void setSurface(const Context *rsc, RsNativeWindow sur);
163 void ioSend(const Context *rsc);
164 void ioReceive(const Context *rsc);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700165
Alex Sakhartchouk1e5168d2010-09-01 16:34:48 -0700166protected:
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700167 Vector<const Program *> mToDirtyList;
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700168 ObjectBaseRef<const Type> mType;
169 void setType(const Type *t) {
170 mType.set(t);
171 mHal.state.type = t;
172 }
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700173
Jason Samsddceab92013-08-07 13:02:32 -0700174#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
175 class NewBufferListener : public android::ConsumerBase::FrameAvailableListener {
176 public:
177 const android::renderscript::Context *rsc;
178 const android::renderscript::Allocation *alloc;
179
180 virtual void onFrameAvailable();
181 };
182
183 sp<NewBufferListener> mBufferListener;
184 sp< GrallocConsumer > mGrallocConsumer;
185#endif
186
187
Jason Samsfa84da22010-03-01 15:31:04 -0800188private:
Jason Samsc7cec1e2011-08-18 18:01:33 -0700189 void freeChildrenUnlocked();
Jason Sams179e9a42011-11-23 15:02:15 -0800190 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800191
192 uint32_t getPackedSize() const;
Jason Sams807fdc42012-07-25 17:55:39 -0700193 static void writePackedData(Context *rsc, const Type *type, uint8_t *dst,
194 const uint8_t *src, bool dstPadded);
Jason Samse3150cf2012-07-24 18:10:20 -0700195 void unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize);
196 void packVec3Allocation(Context *rsc, OStream *stream) const;
Jason Sams326e0dd2009-05-22 14:03:28 -0700197};
198
199}
200}
201#endif
202