blob: a448f0e8f4956d23e5bd89e4bc79f449da354117 [file] [log] [blame]
Jason Samsd01d9702009-12-23 14:35:29 -08001/*
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_COMPONENT_H
18#define ANDROID_COMPONENT_H
19
20#include "rsUtils.h"
21
22// ---------------------------------------------------------------------------
23namespace android {
24namespace renderscript {
25
26
27// An element is a group of Components that occupies one cell in a structure.
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080028class Component {
Jason Samsd01d9702009-12-23 14:35:29 -080029public:
30 Component();
31 ~Component();
32
33 void set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize=1);
34
Jason Samsb4d35682010-01-04 16:52:27 -080035 String8 getGLSLType() const;
Jason Samsd01d9702009-12-23 14:35:29 -080036 void dumpLOGV(const char *prefix) const;
37
38
39 RsDataType getType() const {return mType;}
40 RsDataKind getKind() const {return mKind;}
41 bool getIsNormalized() const {return mNormalized;}
42 uint32_t getVectorSize() const {return mVectorSize;}
43 bool getIsFloat() const {return mIsFloat;}
44 bool getIsSigned() const {return mIsSigned;}
45 uint32_t getBits() const {return mBits;}
46
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070047 // Helpers for reading / writing this class out
48 void serialize(OStream *stream) const;
49 void loadFromStream(IStream *stream);
50
Jason Samse3929c92010-08-09 18:13:33 -070051 bool isReference() const;
52
Jason Samsd01d9702009-12-23 14:35:29 -080053protected:
54 RsDataType mType;
55 RsDataKind mKind;
56 bool mNormalized;
57 uint32_t mVectorSize;
58
59 // derived
60 uint32_t mBits;
61 uint32_t mTypeBits;
62 bool mIsFloat;
63 bool mIsSigned;
64 bool mIsPixel;
65};
66
67}
68}
69
70#endif
71