blob: 9296654fafe5d5c7eb0e4e9d3183497a8a3c98f9 [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 Samsbad80742011-03-16 16:29:28 -070068 };
69 State state;
Jason Samseb4fe182011-05-26 16:33:01 -070070
71 struct DrvState {
Jason Sams807fdc42012-07-25 17:55:39 -070072 mutable void * mallocPtrLOD0;
73 mutable uint32_t strideLOD0;
Jason Samseb4fe182011-05-26 16:33:01 -070074 } drvState;
75
Jason Samsbad80742011-03-16 16:29:28 -070076 };
77 Hal mHal;
78
Jason Samseb4fe182011-05-26 16:33:01 -070079 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
Jason Sams179e9a42011-11-23 15:02:15 -080080 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE,
81 void *ptr = 0);
Jason Sams326e0dd2009-05-22 14:03:28 -070082 virtual ~Allocation();
Jason Samsbad80742011-03-16 16:29:28 -070083 void updateCache();
Jason Sams326e0dd2009-05-22 14:03:28 -070084
Jason Sams807fdc42012-07-25 17:55:39 -070085 void * getPtr() const {return mHal.drvState.mallocPtrLOD0;}
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -070086 const Type * getType() const {return mHal.state.type;}
Jason Sams326e0dd2009-05-22 14:03:28 -070087
Jason Sams366c9c82010-12-08 16:14:36 -080088 void syncAll(Context *rsc, RsAllocationUsageType src);
89
Jason Sams96abf812010-10-05 13:32:49 -070090 void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len);
91
92 void resize1D(Context *rsc, uint32_t dimX);
93 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
Jason Sams326e0dd2009-05-22 14:03:28 -070094
Stephen Hines6ae039b2012-01-18 18:46:27 -080095 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 -080096 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -080097 uint32_t w, uint32_t h, const void *data, size_t sizeBytes);
Jason Sams4b45b892010-12-29 14:31:29 -080098 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
Stephen Hines6ae039b2012-01-18 18:46:27 -080099 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes);
Jason Sams326e0dd2009-05-22 14:03:28 -0700100
Jason Sams807fdc42012-07-25 17:55:39 -0700101 void read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes);
102 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
103 uint32_t w, uint32_t h, void *data, size_t sizeBytes);
104 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
105 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes);
106
Jason Sams4b45b892010-12-29 14:31:29 -0800107 void elementData(Context *rsc, uint32_t x,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800108 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams4b45b892010-12-29 14:31:29 -0800109 void elementData(Context *rsc, uint32_t x, uint32_t y,
Stephen Hines6ae039b2012-01-18 18:46:27 -0800110 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Sams5f0c84c2010-08-31 13:50:42 -0700111
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700112 void addProgramToDirty(const Program *);
113 void removeProgramToDirty(const Program *);
Jason Samse5ffb872009-08-09 17:01:55 -0700114
Jason Samsc21cf402009-11-17 17:26:46 -0800115 virtual void dumpLOGV(const char *prefix) const;
Jason Samse3150cf2012-07-24 18:10:20 -0700116 virtual void serialize(Context *rsc, OStream *stream) const;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -0700117 virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_ALLOCATION; }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -0700118 static Allocation *createFromStream(Context *rsc, IStream *stream);
Jason Samsc21cf402009-11-17 17:26:46 -0800119
Jason Samsb89b0b72010-12-13 17:11:21 -0800120 bool getIsScript() const {
Jason Samsbad80742011-03-16 16:29:28 -0700121 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0;
Jason Samsb89b0b72010-12-13 17:11:21 -0800122 }
Jason Samsebc50192010-12-13 15:32:35 -0800123 bool getIsTexture() const {
Jason Samsbad80742011-03-16 16:29:28 -0700124 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800125 }
Alex Sakhartchouk7d9c5ff2011-04-01 14:19:01 -0700126 bool getIsRenderTarget() const {
127 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0;
128 }
Jason Samsebc50192010-12-13 15:32:35 -0800129 bool getIsBufferObject() const {
Jason Samsbad80742011-03-16 16:29:28 -0700130 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0;
Jason Samsebc50192010-12-13 15:32:35 -0800131 }
Jason Sams760f1f72010-06-25 12:45:41 -0700132
Jason Sams96abf812010-10-05 13:32:49 -0700133 void incRefs(const void *ptr, size_t ct, size_t startOff = 0) const;
134 void decRefs(const void *ptr, size_t ct, size_t startOff = 0) const;
Jason Samsc7cec1e2011-08-18 18:01:33 -0700135 virtual bool freeChildren();
Jason Samse3929c92010-08-09 18:13:33 -0700136
Jason Samseb4fe182011-05-26 16:33:01 -0700137 void sendDirty(const Context *rsc) const;
Jason Samsb89b0b72010-12-13 17:11:21 -0800138 bool getHasGraphicsMipmaps() const {
Jason Samsbad80742011-03-16 16:29:28 -0700139 return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE;
Jason Samsb89b0b72010-12-13 17:11:21 -0800140 }
141
Jason Sams41e373d2012-01-13 14:01:20 -0800142 int32_t getSurfaceTextureID(const Context *rsc);
Jason Sams3522f402012-03-23 11:47:26 -0700143 void setSurfaceTexture(const Context *rsc, SurfaceTexture *st);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800144 void setSurface(const Context *rsc, RsNativeWindow sur);
145 void ioSend(const Context *rsc);
146 void ioReceive(const Context *rsc);
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700147
Alex Sakhartchouk1e5168d2010-09-01 16:34:48 -0700148protected:
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700149 Vector<const Program *> mToDirtyList;
Alex Sakhartchouk064aa7e2011-10-18 10:54:29 -0700150 ObjectBaseRef<const Type> mType;
151 void setType(const Type *t) {
152 mType.set(t);
153 mHal.state.type = t;
154 }
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700155
Jason Samsfa84da22010-03-01 15:31:04 -0800156private:
Jason Samsc7cec1e2011-08-18 18:01:33 -0700157 void freeChildrenUnlocked();
Jason Sams179e9a42011-11-23 15:02:15 -0800158 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
Alex Sakhartchouk2d1220c2011-11-15 15:15:21 -0800159
160 uint32_t getPackedSize() const;
Jason Sams807fdc42012-07-25 17:55:39 -0700161 static void writePackedData(Context *rsc, const Type *type, uint8_t *dst,
162 const uint8_t *src, bool dstPadded);
Jason Samse3150cf2012-07-24 18:10:20 -0700163 void unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize);
164 void packVec3Allocation(Context *rsc, OStream *stream) const;
Jason Sams326e0dd2009-05-22 14:03:28 -0700165};
166
167}
168}
169#endif
170