blob: 0ca5bb6ef536f7d7415e5892b466bea76fd533bd [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2009 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#ifndef ANDROID_STRUCTURED_TYPE_H
18#define ANDROID_STRUCTURED_TYPE_H
19
20#include "rsElement.h"
Jason Sams433eca32010-01-06 11:57:52 -080021#include "rsVertexArray.h"
Jason Sams326e0dd2009-05-22 14:03:28 -070022
23// ---------------------------------------------------------------------------
24namespace android {
25namespace renderscript {
26
Jason Samse5ffb872009-08-09 17:01:55 -070027
Jason Sams326e0dd2009-05-22 14:03:28 -070028class Type : public ObjectBase
29{
30public:
Jason Sams326e0dd2009-05-22 14:03:28 -070031 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
32
33
34 size_t getOffsetForFace(uint32_t face) const;
35
36 size_t getSizeBytes() const {return mTotalSizeBytes;}
37 size_t getElementSizeBytes() const {return mElement->getSizeBytes();}
38 const Element * getElement() const {return mElement.get();}
39
40 uint32_t getDimX() const {return mDimX;}
41 uint32_t getDimY() const {return mDimY;}
42 uint32_t getDimZ() const {return mDimZ;}
43 uint32_t getDimLOD() const {return mDimLOD;}
44 bool getDimFaces() const {return mFaces;}
45
46 uint32_t getLODDimX(uint32_t lod) const {rsAssert(lod < mLODCount); return mLODs[lod].mX;}
47 uint32_t getLODDimY(uint32_t lod) const {rsAssert(lod < mLODCount); return mLODs[lod].mY;}
48 uint32_t getLODDimZ(uint32_t lod) const {rsAssert(lod < mLODCount); return mLODs[lod].mZ;}
49 uint32_t getLODOffset(uint32_t lod) const {rsAssert(lod < mLODCount); return mLODs[lod].mOffset;}
50
51 uint32_t getLODOffset(uint32_t lod, uint32_t x) const;
52 uint32_t getLODOffset(uint32_t lod, uint32_t x, uint32_t y) const;
53 uint32_t getLODOffset(uint32_t lod, uint32_t x, uint32_t y, uint32_t z) const;
54
55 uint32_t getLODCount() const {return mLODCount;}
Jason Samsef21edc2010-02-22 15:37:51 -080056 bool getIsNp2() const;
Jason Sams326e0dd2009-05-22 14:03:28 -070057
Jason Sams326e0dd2009-05-22 14:03:28 -070058 void clear();
59 void compute();
60
Jason Samsc460e552009-11-25 13:22:07 -080061 void enableGLVertexBuffer(class VertexArray *) const;
Jason Samse5ffb872009-08-09 17:01:55 -070062
Jason Samse12c1c52009-09-27 17:50:38 -070063 void dumpLOGV(const char *prefix) const;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070064 virtual void serialize(OStream *stream) const;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070065 virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_TYPE; }
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070066 static Type *createFromStream(Context *rsc, IStream *stream);
Jason Sams326e0dd2009-05-22 14:03:28 -070067
Alex Sakhartchouk383e5b12010-09-23 16:16:33 -070068 bool isEqual(const Type *other) const;
69
Jason Sams96abf812010-10-05 13:32:49 -070070 Type * cloneAndResize1D(Context *rsc, uint32_t dimX) const;
71 Type * cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
72
Jason Samsf0c1df42010-10-26 13:09:17 -070073 static Type * getType(Context *rsc, const Element *e,
74 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
75 bool dimLOD, bool dimFaces);
76
Jason Sams326e0dd2009-05-22 14:03:28 -070077protected:
78 struct LOD {
79 size_t mX;
80 size_t mY;
81 size_t mZ;
82 size_t mOffset;
83 };
84
85 void makeLODTable();
86
87 // Internal structure from most to least significant.
88 // * Array dimensions
89 // * Faces
90 // * Mipmaps
91 // * xyz
92
93 ObjectBaseRef<const Element> mElement;
94
95 // Size of the structure in the various dimensions. A missing Dimension is
96 // specified as a 0 and not a 1.
97 size_t mDimX;
98 size_t mDimY;
99 size_t mDimZ;
100 bool mDimLOD;
101 bool mFaces;
102
Jason Samse5ffb872009-08-09 17:01:55 -0700103 // A list of array dimensions. The count is the number of array dimensions and the
Jason Sams326e0dd2009-05-22 14:03:28 -0700104 // sizes is a per array size.
105 //Vector<size_t> mDimArraysSizes;
106
107 // count of mipmap levels, 0 indicates no mipmapping
108
109 size_t mMipChainSizeBytes;
110 size_t mTotalSizeBytes;
111 LOD *mLODs;
112 uint32_t mLODCount;
113
Alex Sakhartchouk700ba382010-10-08 15:00:05 -0700114 VertexArray::Attrib *mAttribs;
115 uint32_t mAttribsSize;
Alex Sakhartchouk39f2ef62010-10-11 12:35:15 -0700116 bool isValidGLComponent(uint32_t fieldIdx);
Jason Samse5ffb872009-08-09 17:01:55 -0700117 void makeGLComponents();
118
Jason Samsf0c1df42010-10-26 13:09:17 -0700119
Jason Sams225afd32010-10-21 14:06:55 -0700120protected:
121 virtual void preDestroy();
Jason Samsf0c1df42010-10-26 13:09:17 -0700122 virtual ~Type();
Jason Sams225afd32010-10-21 14:06:55 -0700123
Jason Sams326e0dd2009-05-22 14:03:28 -0700124private:
Jason Samsf0c1df42010-10-26 13:09:17 -0700125 Type(Context *);
Jason Sams326e0dd2009-05-22 14:03:28 -0700126 Type(const Type &);
127};
128
129
130class TypeState {
131public:
132 TypeState();
133 ~TypeState();
134
Jason Sams81549542010-02-17 15:38:10 -0800135 // Cache of all existing types.
136 Vector<Type *> mTypes;
Jason Sams326e0dd2009-05-22 14:03:28 -0700137};
138
139
140}
141}
142#endif //ANDROID_STRUCTURED_TYPE