blob: c93033b66306b64529a5e96d97079d303b7b2f75 [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_H
18#define ANDROID_RS_PROGRAM_H
19
20#include "rsObjectBase.h"
21#include "rsElement.h"
22
23// ---------------------------------------------------------------------------
24namespace android {
25namespace renderscript {
Jason Samsc460e552009-11-25 13:22:07 -080026class ShaderCache;
Jason Sams326e0dd2009-05-22 14:03:28 -070027
Alex Sakhartchouke7ae69f2010-09-14 09:50:43 -070028#define RS_SHADER_INTERNAL "//rs_shader_internal\n"
Alex Sakhartchouk886f11a2010-09-29 09:49:13 -070029#define RS_SHADER_ATTR "ATTRIB_"
30#define RS_SHADER_UNI "UNI_"
Alex Sakhartchouke7ae69f2010-09-14 09:50:43 -070031
Jason Sams326e0dd2009-05-22 14:03:28 -070032class Program : public ObjectBase
33{
34public:
Jason Samsc460e552009-11-25 13:22:07 -080035 const static uint32_t MAX_ATTRIBS = 8;
36 const static uint32_t MAX_UNIFORMS = 16;
37
Jason Sams4815c0d2009-12-15 12:58:36 -080038 Program(Context *);
39 Program(Context *, const char * shaderText, uint32_t shaderLength,
40 const uint32_t * params, uint32_t paramLength);
Jason Sams326e0dd2009-05-22 14:03:28 -070041 virtual ~Program();
42
Alex Sakhartchouk383e5b12010-09-23 16:16:33 -070043 void bindAllocation(Context *, Allocation *, uint32_t slot);
Jason Samsc460e552009-11-25 13:22:07 -080044 virtual void createShader();
45
Alex Sakhartchouke7ae69f2010-09-14 09:50:43 -070046 bool isUserProgram() const {return !mIsInternal;}
Jason Sams433eca32010-01-06 11:57:52 -080047
Alex Sakhartchouk383e5b12010-09-23 16:16:33 -070048 void bindTexture(Context *, uint32_t slot, Allocation *);
49 void bindSampler(Context *, uint32_t slot, Sampler *);
Jason Sams7dad9c32009-12-17 16:55:08 -080050
Jason Samsc460e552009-11-25 13:22:07 -080051 uint32_t getShaderID() const {return mShaderID;}
Jason Samsf2a5d732009-11-30 14:49:55 -080052 void setShader(const char *, uint32_t len);
Jason Samsc460e552009-11-25 13:22:07 -080053
54 uint32_t getAttribCount() const {return mAttribCount;}
55 uint32_t getUniformCount() const {return mUniformCount;}
56 const String8 & getAttribName(uint32_t i) const {return mAttribNames[i];}
57 const String8 & getUniformName(uint32_t i) const {return mUniformNames[i];}
Jason Samscfb1d112009-08-05 13:57:03 -070058
Jason Samsb4d35682010-01-04 16:52:27 -080059 String8 getGLSLInputString() const;
60 String8 getGLSLOutputString() const;
61 String8 getGLSLConstantString() const;
62
Jason Samsa2cf7552010-03-03 13:03:18 -080063 bool isValid() const {return mIsValid;}
64
Jason Sams326e0dd2009-05-22 14:03:28 -070065protected:
66 // Components not listed in "in" will be passed though
67 // unless overwritten by components in out.
Jason Sams4815c0d2009-12-15 12:58:36 -080068 ObjectBaseRef<Element> *mInputElements;
69 ObjectBaseRef<Element> *mOutputElements;
70 ObjectBaseRef<Type> *mConstantTypes;
71 uint32_t mInputCount;
72 uint32_t mOutputCount;
73 uint32_t mConstantCount;
Jason Samsa2cf7552010-03-03 13:03:18 -080074 bool mIsValid;
Alex Sakhartchouke7ae69f2010-09-14 09:50:43 -070075 bool mIsInternal;
Jason Sams326e0dd2009-05-22 14:03:28 -070076
Alex Sakhartchouk6e934212010-08-31 12:02:01 -070077 // Applies to vertex and fragment shaders only
78 void appendUserConstants();
Alex Sakhartchouk383e5b12010-09-23 16:16:33 -070079 void setupUserConstants(Context *rsc, ShaderCache *sc, bool isFragment);
Alex Sakhartchouk6e934212010-08-31 12:02:01 -070080 void initAddUserElement(const Element *e, String8 *names, uint32_t *count, const char *prefix);
81
Jason Sams9ebb0c42010-01-12 12:12:28 -080082 ObjectBaseRef<Allocation> mConstants[MAX_UNIFORMS];
Jason Sams326e0dd2009-05-22 14:03:28 -070083
Jason Samscfb1d112009-08-05 13:57:03 -070084 mutable bool mDirty;
Jason Samsc460e552009-11-25 13:22:07 -080085 String8 mShader;
Jason Samsf2a5d732009-11-30 14:49:55 -080086 String8 mUserShader;
Jason Samsc460e552009-11-25 13:22:07 -080087 uint32_t mShaderID;
Jason Samsc2f94902009-10-15 18:45:45 -070088
Jason Samsf2e4fa22009-12-15 13:27:04 -080089 uint32_t mTextureCount;
Jason Samsc460e552009-11-25 13:22:07 -080090 uint32_t mAttribCount;
91 uint32_t mUniformCount;
92 String8 mAttribNames[MAX_ATTRIBS];
93 String8 mUniformNames[MAX_UNIFORMS];
94
Jason Sams7dad9c32009-12-17 16:55:08 -080095 // The difference between Textures and Constants is how they are accessed
96 // Texture lookups go though a sampler which in effect converts normalized
97 // coordinates into type specific. Multiple samples may also be taken
98 // and filtered.
99 //
100 // Constants are strictly accessed by programetic loads.
Alex Sakhartchouk383e5b12010-09-23 16:16:33 -0700101 ObjectBaseRef<Allocation> *mTextures;
102 ObjectBaseRef<Sampler> *mSamplers;
Jason Sams7dad9c32009-12-17 16:55:08 -0800103
Jason Samscd506532009-12-15 19:10:11 -0800104 bool loadShader(Context *, uint32_t type);
Jason Samsc2f94902009-10-15 18:45:45 -0700105
106public:
Jason Sams5c3e3bc2009-10-26 15:19:28 -0700107 void forceDirty() const {mDirty = true;}
Jason Sams326e0dd2009-05-22 14:03:28 -0700108};
109
110
111
112}
113}
114#endif
115
116
117