blob: 0918522d98ee85a6415871e9b4f5d20dade8c083 [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_ELEMENT_H
18#define ANDROID_STRUCTURED_ELEMENT_H
19
Jason Sams326e0dd2009-05-22 14:03:28 -070020#include "rsComponent.h"
21
22// ---------------------------------------------------------------------------
23namespace android {
24namespace renderscript {
25
26
27// An element is a group of Components that occupies one cell in a structure.
28class Element : public ObjectBase
29{
30public:
31 Element(uint32_t count);
32 ~Element();
33
34
35 void setComponent(uint32_t idx, Component *c);
36
Jason Sams565ac362009-06-03 16:04:54 -070037 uint32_t getGLType() const;
38 uint32_t getGLFormat() const;
Jason Sams326e0dd2009-05-22 14:03:28 -070039
40
41 size_t getSizeBits() const;
Jason Samse5ffb872009-08-09 17:01:55 -070042 size_t getSizeBytes() const {
43 return (getSizeBits() + 7) >> 3;
Jason Sams326e0dd2009-05-22 14:03:28 -070044 }
45
46 size_t getComponentOffsetBits(uint32_t componentNumber) const;
Jason Samse5ffb872009-08-09 17:01:55 -070047 size_t getComponentOffsetBytes(uint32_t componentNumber) const {
Jason Sams326e0dd2009-05-22 14:03:28 -070048 return (getComponentOffsetBits(componentNumber) + 7) >> 3;
49 }
50
51 uint32_t getComponentCount() const {return mComponentCount;}
52 Component * getComponent(uint32_t idx) const {return mComponents[idx].get();}
53
54protected:
55 // deallocate any components that are part of this element.
56 void clear();
57
58 size_t mComponentCount;
59 ObjectBaseRef<Component> * mComponents;
60 //uint32_t *mOffsetTable;
61
62 Element();
63};
64
65
66class ElementState {
67public:
68 ElementState();
69 ~ElementState();
70
Jason Sams326e0dd2009-05-22 14:03:28 -070071 Vector<Component *> mComponentBuildList;
72
73
74
75 struct Predefined {
76 Predefined() {
77 mElement = NULL;
78 }
79 Predefined(RsElementPredefined en, Element *e) {
Jason Samse5ffb872009-08-09 17:01:55 -070080 mEnum = en;
Jason Sams326e0dd2009-05-22 14:03:28 -070081 mElement = e;
82 }
83 RsElementPredefined mEnum;
84 Element * mElement;
85 };
86 Vector<Predefined> mPredefinedList;
87
88 void initPredefined();
Jason Samse5ffb872009-08-09 17:01:55 -070089
Jason Sams326e0dd2009-05-22 14:03:28 -070090};
91
92
93}
94}
95#endif //ANDROID_STRUCTURED_ELEMENT_H