Home
last modified time | relevance | path

Searched refs:ShaderVariable (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h58 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
DOutputASM.cpp265 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/
DProgram.h65 std::vector<glsl::ShaderVariable> fields;
238 …l areMatchingFields(const std::vector<glsl::ShaderVariable>& fields1, const std::vector<glsl::Shad…
DProgram.cpp1982 …::areMatchingFields(const std::vector<glsl::ShaderVariable>& fields1, const std::vector<glsl::Shad… in areMatchingFields()