blob: e26c6e8a35fdafe0883dfb80270d37281583fc3b [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_RS_PROGRAM_FRAGMENT_H
18#define ANDROID_RS_PROGRAM_FRAGMENT_H
19
20#include "rsProgram.h"
21
22// ---------------------------------------------------------------------------
23namespace android {
24namespace renderscript {
25
Jason Samscfb1d112009-08-05 13:57:03 -070026class ProgramFragmentState;
Jason Sams326e0dd2009-05-22 14:03:28 -070027
28class ProgramFragment : public Program
29{
30public:
31 const static uint32_t MAX_TEXTURE = 2;
Jason Sams326e0dd2009-05-22 14:03:28 -070032
33
34
Jason Samse514b452009-09-25 14:51:22 -070035 ProgramFragment(Context *, Element *in, Element *out, bool pointSpriteEnable);
Jason Sams326e0dd2009-05-22 14:03:28 -070036 virtual ~ProgramFragment();
37
Jason Samsafcb25c2009-08-25 11:34:49 -070038 virtual void setupGL(const Context *, ProgramFragmentState *);
Jason Sams326e0dd2009-05-22 14:03:28 -070039
40
41
42 void bindTexture(uint32_t slot, Allocation *);
43 void bindSampler(uint32_t slot, Sampler *);
44 void setType(uint32_t slot, const Element *, uint32_t dim);
45
46 void setEnvMode(uint32_t slot, RsTexEnvMode);
47 void setTexEnable(uint32_t slot, bool);
48
49
50
51protected:
52 // The difference between Textures and Constants is how they are accessed
53 // Texture lookups go though a sampler which in effect converts normalized
54 // coordinates into type specific. Multiple samples may also be taken
55 // and filtered.
Jason Samscfb1d112009-08-05 13:57:03 -070056 //
Jason Sams326e0dd2009-05-22 14:03:28 -070057 // Constants are strictly accessed by programetic loads.
58 ObjectBaseRef<Allocation> mTextures[MAX_TEXTURE];
59 ObjectBaseRef<Sampler> mSamplers[MAX_TEXTURE];
60 ObjectBaseRef<const Element> mTextureFormats[MAX_TEXTURE];
61 uint32_t mTextureDimensions[MAX_TEXTURE];
62
63
Jason Sams326e0dd2009-05-22 14:03:28 -070064 // Hacks to create a program for now
65 RsTexEnvMode mEnvModes[MAX_TEXTURE];
66 uint32_t mTextureEnableMask;
Jason Samse0158412009-08-20 16:10:36 -070067 bool mPointSpriteEnable;
Jason Sams326e0dd2009-05-22 14:03:28 -070068};
69
Jason Samscfb1d112009-08-05 13:57:03 -070070class ProgramFragmentState
Jason Sams326e0dd2009-05-22 14:03:28 -070071{
72public:
73 ProgramFragmentState();
74 ~ProgramFragmentState();
75
76 ProgramFragment *mPF;
Jason Sams8ce125b2009-06-17 16:52:59 -070077 void init(Context *rsc, int32_t w, int32_t h);
Jason Samsf2649a92009-09-25 16:37:33 -070078 void deinit(Context *rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070079
80 ObjectBaseRef<Type> mTextureTypes[ProgramFragment::MAX_TEXTURE];
Jason Sams8ce125b2009-06-17 16:52:59 -070081 ObjectBaseRef<ProgramFragment> mDefault;
Jason Samsa0a1b6f2009-06-10 15:04:38 -070082 Vector<ProgramFragment *> mPrograms;
Jason Samscfb1d112009-08-05 13:57:03 -070083
84 ObjectBaseRef<ProgramFragment> mLast;
Jason Sams326e0dd2009-05-22 14:03:28 -070085};
86
87
88}
89}
90#endif
91
92
93
94