blob: b552ca383819a1217074391dc0dafb51207e5234 [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 */
16
17#ifndef ANDROID_STRUCTURED_ALLOCATION_H
18#define ANDROID_STRUCTURED_ALLOCATION_H
19
20#include "rsType.h"
21
Jason Sams7ac2a4d2012-02-15 12:04:24 -080022struct ANativeWindow;
23
Jason Sams326e0dd2009-05-22 14:03:28 -070024// ---------------------------------------------------------------------------
25namespace android {
Jason Sams3522f402012-03-23 11:47:26 -070026class SurfaceTexture;
27
Jason Sams326e0dd2009-05-22 14:03:28 -070028namespace renderscript {
29
Jason Sams5c3e3bc2009-10-26 15:19:28 -070030class Program;
Jason Sams326e0dd2009-05-22 14:03:28 -070031
Stephen Hines1e5149f2011-08-08 15:06:40 -070032/*****************************************************************************
33 * CAUTION
34 *
35 * Any layout changes for this class may require a corresponding change to be
36 * made to frameworks/compile/libbcc/lib/ScriptCRT/rs_core.c, which contains
37 * a partial copy of the information below.
38 *
39 *****************************************************************************/
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080040class Allocation : public ObjectBase {
Stephen Hines1e5149f2011-08-08 15:06:40 -070041 // The graphics equivalent of malloc. The allocation contains a structure of elements.
Jason Sams326e0dd2009-05-22 14:03:28 -070042
Jason Sams326e0dd2009-05-22 14:03:28 -070043public:
Jason Sams807fdc42012-07-25 17:55:39 -070044 const static int MAX_LOD = 16;
45
Jason Samsbad80742011-03-16 16:29:28 -070046 struct Hal {
47 void * drv;
48
49 struct State {
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070050 const Type * type;
Jason Samsbad80742011-03-16 16:29:28 -070051
52 uint32_t usageFlags;
53 RsAllocationMipmapControl mipmapControl;
54
55 // Cached fields from the Type and Element
56 // to prevent pointer chasing in critical loops.
57 uint32_t dimensionX;
58 uint32_t dimensionY;
59 uint32_t dimensionZ;
60 uint32_t elementSizeBytes;
61 bool hasMipmaps;
62 bool hasFaces;
63 bool hasReferences;
Jason Sams2275e9c2012-04-16 17:01:26 -070064 void * unused_01;
Jason Samscf27eb42012-02-10 13:24:18 -080065 int32_t surfaceTextureID;
Jason Sams7ac2a4d2012-02-15 12:04:24 -080066 ANativeWindow *wndSurface;
Jason Sams3522f402012-03-23 11:47:26 -070067 SurfaceTexture *surfaceTexture;
Jason Sams61462382012-08-29 11:57:40 -070068 RsDataType eType;
Jason Samsbad80742011-03-16 16:29:28 -070069 };
70 State state;
Jason Samseb4fe182011-05-26 16:33:01 -070071
72 struct DrvState {
Jason Sams709a0972012-11-15 18:18:04 -080073 struct LodState {
74 void * mallocPtr;
75 size_t stride;
76 uint32_t dimX;
77 uint32_t dimY;
78 uint32_t dimZ;
79 } lod[android::renderscript::Allocation::MAX_LOD];
80 size_t faceOffset;
81 uint32_t lodCount;
82 uint32_t faceCount;
83 };
84 mutable DrvState drvState;
Jason Samseb4fe182011-05-26 16:33:01 -070085
Jason Samsbad80742011-03-16 16:29:28 -070086 };
87 Hal mHal;
88
Jason Samseb4fe182011-05-26 16:33:01 -070089 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080090 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE,
91 void *ptr = 0);
Jason Sams326e0dd2009-05-22 14:03:28 -070092 virtual ~Allocation();
Jason Samsbad80742011-03-16 16:29:28 -070093 void updateCache();
Jason Sams326e0dd2009-05-22 14:03:28 -070094
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070095 const Type * getType() const {return mHal.state.type;}
Jason Sams326e0dd2009-05-22 14:03:28 -070096
Jason Sams366c9c82010-12-08 16:14:36 -080097 void syncAll(Context *rsc, RsAllocationUsageType src);
98
Jason Sams96abf812010-10-05 13:32:49 -070099 void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len);
100
101 void resize1D(Context *rsc, uint32_t dimX);
102 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
Jason Sams326e0dd2009-05-22 14:03:28 -0700103
Stephen Hines6ae039b2012-01-18 18:46:27 -0800104 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 -0800105 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800106 uint32_t w, uint32_t h, const void *data, size_t sizeBytes);
107 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
108 uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride);
Jason Sams4b45b892010-12-29 14:31:29 -0800109 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800110 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700111
Jason Sams807fdc42012-07-25 17:55:39 -0700112 void read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes);
Tim Murray509ea5c2012-11-13 11:56:40 -0800113 void readUnchecked(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes);
Jason Sams807fdc42012-07-25 17:55:39 -0700114 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800115 uint32_t w, uint32_t h, void *data, size_t sizeBytes);
116 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride);
Jason Sams807fdc42012-07-25 17:55:39 -0700118 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
Tim Murray358747a2012-11-26 13:52:04 -0800119 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes);
Jason Sams807fdc42012-07-25 17:55:39 -0700120
Jason Sams4b45b892010-12-29 14:31:29 -0800121 void elementData(Context *rsc, uint32_t x,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800122 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams4b45b892010-12-29 14:31:29 -0800123 void elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800124 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700125
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700126 void addProgramToDirty(const Program *);
127 void removeProgramToDirty(const Program *);
Jason Samse5ffb872009-08-09 17:01:55 -0700128
Jason Samsc21cf402009-11-17 17:26:46 -0800129 virtual void dumpLOGV(const char *prefix) const;
Jason Samse3150cf2012-07-24 18:10:20 -0700130 virtual void serialize(Context *rsc, OStream *stream) const;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700131 virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_ALLOCATION; }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700132 static Allocation *createFromStream(Context *rsc, IStream *stream);
Jason Samsc21cf402009-11-17 17:26:46 -0800133
Jason Samsb89b0b72010-12-13 17:11:21 -0800134 bool getIsScript() const {
Jason Samsbad80742011-03-16 16:29:28 -0700135 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0;
Jason Samsb89b0b72010-12-13 17:11:21 -0800136 }
Jason Samsebc50192010-12-13 15:32:35 -0800137 bool getIsTexture() const {
Jason Samsbad80742011-03-16 16:29:28 -0700138 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800139 }
Alex Sakhartchouk7d9c5ff2011-04-01 14:19:01 -0700140 bool getIsRenderTarget() const {
141 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0;
142 }
Jason Samsebc50192010-12-13 15:32:35 -0800143 bool getIsBufferObject() const {
Jason Samsbad80742011-03-16 16:29:28 -0700144 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800145 }
Jason Sams760f1f72010-06-25 12:45:41 -0700146
Jason Sams96abf812010-10-05 13:32:49 -0700147 void incRefs(const void *ptr, size_t ct, size_t startOff = 0) const;
148 void decRefs(const void *ptr, size_t ct, size_t startOff = 0) const;
Jason Samsc7cec1e2011-08-18 18:01:33 -0700149 virtual bool freeChildren();
Jason Samse3929c92010-08-09 18:13:33 -0700150
Jason Samseb4fe182011-05-26 16:33:01 -0700151 void sendDirty(const Context *rsc) const;
Jason Samsb89b0b72010-12-13 17:11:21 -0800152 bool getHasGraphicsMipmaps() const {
Jason Samsbad80742011-03-16 16:29:28 -0700153 return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE;
Jason Samsb89b0b72010-12-13 17:11:21 -0800154 }
155
Jason Sams41e373d2012-01-13 14:01:20 -0800156 int32_t getSurfaceTextureID(const Context *rsc);
Jason Sams3522f402012-03-23 11:47:26 -0700157 void setSurfaceTexture(const Context *rsc, SurfaceTexture *st);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800158 void setSurface(const Context *rsc, RsNativeWindow sur);
159 void ioSend(const Context *rsc);
160 void ioReceive(const Context *rsc);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700161
Alex Sakhartchouk1e5168d2010-09-01 16:34:48 -0700162protected:
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700163 Vector<const Program *> mToDirtyList;
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700164 ObjectBaseRef<const Type> mType;
165 void setType(const Type *t) {
166 mType.set(t);
167 mHal.state.type = t;
168 }
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700169
Jason Samsfa84da22010-03-01 15:31:04 -0800170private:
Jason Samsc7cec1e2011-08-18 18:01:33 -0700171 void freeChildrenUnlocked();
Jason Sams179e9a42011-11-23 15:02:15 -0800172 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800173
174 uint32_t getPackedSize() const;
Jason Sams807fdc42012-07-25 17:55:39 -0700175 static void writePackedData(Context *rsc, const Type *type, uint8_t *dst,
176 const uint8_t *src, bool dstPadded);
Jason Samse3150cf2012-07-24 18:10:20 -0700177 void unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize);
178 void packVec3Allocation(Context *rsc, OStream *stream) const;
Jason Sams326e0dd2009-05-22 14:03:28 -0700179};
180
181}
182}
183#endif
184