blob: c48464dadecc0682b7b147b1b462c580e3541756 [file] [log] [blame]
Jason Samsd19f10d2009-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 Samsbb51c402009-11-25 13:22:07 -080026class ShaderCache;
Jason Samsd19f10d2009-05-22 14:03:28 -070027
Alex Sakhartchoukc984dd72010-09-14 09:50:43 -070028#define RS_SHADER_INTERNAL "//rs_shader_internal\n"
Alex Sakhartchouk4378f112010-09-29 09:49:13 -070029#define RS_SHADER_ATTR "ATTRIB_"
30#define RS_SHADER_UNI "UNI_"
Alex Sakhartchoukc984dd72010-09-14 09:50:43 -070031
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080032class Program : public ObjectBase {
Jason Samsd19f10d2009-05-22 14:03:28 -070033public:
Jason Samsbb51c402009-11-25 13:22:07 -080034
Jason Sams0011bcf2009-12-15 12:58:36 -080035 Program(Context *);
36 Program(Context *, const char * shaderText, uint32_t shaderLength,
37 const uint32_t * params, uint32_t paramLength);
Jason Samsd19f10d2009-05-22 14:03:28 -070038 virtual ~Program();
39
Alex Sakhartchoukb89aaac2010-09-23 16:16:33 -070040 void bindAllocation(Context *, Allocation *, uint32_t slot);
Jason Samsbb51c402009-11-25 13:22:07 -080041 virtual void createShader();
42
Alex Sakhartchoukc984dd72010-09-14 09:50:43 -070043 bool isUserProgram() const {return !mIsInternal;}
Jason Samsa09a6e12010-01-06 11:57:52 -080044
Alex Sakhartchoukb89aaac2010-09-23 16:16:33 -070045 void bindTexture(Context *, uint32_t slot, Allocation *);
46 void bindSampler(Context *, uint32_t slot, Sampler *);
Jason Sams68afd012009-12-17 16:55:08 -080047
Jason Samsbb51c402009-11-25 13:22:07 -080048 uint32_t getShaderID() const {return mShaderID;}
Jason Sams54c0ec12009-11-30 14:49:55 -080049 void setShader(const char *, uint32_t len);
Jason Samsbb51c402009-11-25 13:22:07 -080050
51 uint32_t getAttribCount() const {return mAttribCount;}
52 uint32_t getUniformCount() const {return mUniformCount;}
53 const String8 & getAttribName(uint32_t i) const {return mAttribNames[i];}
54 const String8 & getUniformName(uint32_t i) const {return mUniformNames[i];}
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080055 uint32_t getUniformArraySize(uint32_t i) const {return mUniformArraySizes[i];}
Jason Sams9bee51c2009-08-05 13:57:03 -070056
Jason Samse17964e2010-01-04 16:52:27 -080057 String8 getGLSLInputString() const;
58 String8 getGLSLOutputString() const;
59 String8 getGLSLConstantString() const;
60
Jason Sams156cce62010-03-03 13:03:18 -080061 bool isValid() const {return mIsValid;}
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080062 void forceDirty() const {mDirty = true;}
Jason Sams156cce62010-03-03 13:03:18 -080063
Jason Samsd19f10d2009-05-22 14:03:28 -070064protected:
65 // Components not listed in "in" will be passed though
66 // unless overwritten by components in out.
Jason Sams0011bcf2009-12-15 12:58:36 -080067 ObjectBaseRef<Element> *mInputElements;
68 ObjectBaseRef<Element> *mOutputElements;
69 ObjectBaseRef<Type> *mConstantTypes;
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080070 ObjectBaseRef<Allocation> *mConstants;
Jason Sams0011bcf2009-12-15 12:58:36 -080071 uint32_t mInputCount;
72 uint32_t mOutputCount;
73 uint32_t mConstantCount;
Jason Sams156cce62010-03-03 13:03:18 -080074 bool mIsValid;
Alex Sakhartchoukc984dd72010-09-14 09:50:43 -070075 bool mIsInternal;
Jason Samsd19f10d2009-05-22 14:03:28 -070076
Alex Sakhartchouk8442e0b2010-08-31 12:02:01 -070077 // Applies to vertex and fragment shaders only
78 void appendUserConstants();
Alex Sakhartchoukb89aaac2010-09-23 16:16:33 -070079 void setupUserConstants(Context *rsc, ShaderCache *sc, bool isFragment);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080080 void initAddUserElement(const Element *e, String8 *names, uint32_t *arrayLengths, uint32_t *count, const char *prefix);
Alex Sakhartchouk8442e0b2010-08-31 12:02:01 -070081
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080082 void initAttribAndUniformArray();
Jason Samsd19f10d2009-05-22 14:03:28 -070083
Jason Sams9bee51c2009-08-05 13:57:03 -070084 mutable bool mDirty;
Jason Samsbb51c402009-11-25 13:22:07 -080085 String8 mShader;
Jason Sams54c0ec12009-11-30 14:49:55 -080086 String8 mUserShader;
Jason Samsbb51c402009-11-25 13:22:07 -080087 uint32_t mShaderID;
Jason Sams741a6102009-10-15 18:45:45 -070088
Jason Sams7e5ab3b2009-12-15 13:27:04 -080089 uint32_t mTextureCount;
Jason Samsbb51c402009-11-25 13:22:07 -080090 uint32_t mAttribCount;
91 uint32_t mUniformCount;
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -080092 String8 *mAttribNames;
93 String8 *mUniformNames;
94 uint32_t *mUniformArraySizes;
95
96 void logUniform(const Element *field, const float *fd, uint32_t arraySize );
97 void setUniform(Context *rsc, const Element *field, const float *fd, int32_t slot, uint32_t arraySize );
98 void initMemberVars();
Jason Samsbb51c402009-11-25 13:22:07 -080099
Jason Sams68afd012009-12-17 16:55:08 -0800100 // The difference between Textures and Constants is how they are accessed
101 // Texture lookups go though a sampler which in effect converts normalized
102 // coordinates into type specific. Multiple samples may also be taken
103 // and filtered.
104 //
105 // Constants are strictly accessed by programetic loads.
Alex Sakhartchoukb89aaac2010-09-23 16:16:33 -0700106 ObjectBaseRef<Allocation> *mTextures;
107 ObjectBaseRef<Sampler> *mSamplers;
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800108 RsTextureTarget *mTextureTargets;
Jason Sams5dad8b42009-12-15 19:10:11 -0800109 bool loadShader(Context *, uint32_t type);
Jason Samsd19f10d2009-05-22 14:03:28 -0700110};
111
Jason Samsd19f10d2009-05-22 14:03:28 -0700112}
113}
114#endif
115
116
117