Searched refs:ShaderVariable (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.h | 58 struct ShaderVariable struct 60 ShaderVariable(const TType& type, const std::string& name, int registerIndex); 69 std::vector<ShaderVariable> fields; argument 72 struct Uniform : public ShaderVariable 159 struct Varying : public ShaderVariable 162 : ShaderVariable(type, name, reg), qualifier(type.getQualifier()), column(col) in ShaderVariable() function
|
D | OutputASM.cpp | 265 ShaderVariable::ShaderVariable(const TType& type, const std::string& name, int registerIndex) : in ShaderVariable() function in glsl::ShaderVariable 273 fields.push_back(ShaderVariable(*(field->type()), field->name().c_str(), -1)); in ShaderVariable() 279 ShaderVariable(type, name, registerIndex), blockId(blockId), blockInfo(blockMemberInfo) in Uniform()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.h | 65 std::vector<glsl::ShaderVariable> fields; 238 …l areMatchingFields(const std::vector<glsl::ShaderVariable>& fields1, const std::vector<glsl::Shad…
|
D | Program.cpp | 1982 …::areMatchingFields(const std::vector<glsl::ShaderVariable>& fields1, const std::vector<glsl::Shad… in areMatchingFields()
|