Home
last modified time | relevance | path

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

/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceDefinitionUtil.hpp42 class VariablePathComponent class
45 VariablePathComponent (void) :m_type(TYPE_LAST) { } in VariablePathComponent() function in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
46VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; } in VariablePathComponent() function in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
47VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.bl… in VariablePathComponent() function in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
48VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.d… in VariablePathComponent() function in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
50VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_… in VariablePathComponent() function in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
51VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type… in operator =()
179 …VariablePathByPathName (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath…
Des31fProgramInterfaceQueryTestCase.cpp46 using ProgramInterfaceDefinition::VariablePathComponent;
139 static glu::MatrixOrder getMatrixOrderFromPath (const std::vector<VariablePathComponent>& path) in getMatrixOrderFromPath()
230 …virtual void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::st…
247 std::vector<VariablePathComponent> path; in validate()
361 …void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string&…
375 void TypeValidator::validateSingleVariable (const std::vector<VariablePathComponent>& path, const s… in validateSingleVariable()
435 …void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string&…
448 void ArraySizeValidator::validateSingleVariable (const std::vector<VariablePathComponent>& path, co… in validateSingleVariable()
450 const VariablePathComponent nullComponent; in validateSingleVariable()
451 …const VariablePathComponent& enclosingcomponent = (path.size() > 1) ? (path[path.size()-2]) : (nul… in validateSingleVariable()
[all …]
Des31fProgramInterfaceDefinitionUtil.cpp216 using ProgramInterfaceDefinition::VariablePathComponent;
718 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const char* subPath… in traverseVariablePath()
722 typePath.push_back(VariablePathComponent(&type)); in traverseVariablePath()
760 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const std::string& … in traverseVariablePath()
765 typePath.push_back(VariablePathComponent(&var)); in traverseVariablePath()
769 static bool traverseShaderVariablePath (std::vector<VariablePathComponent>& typePath, const Program… in traverseShaderVariablePath()
797 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath()
814 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath()
827 static bool traverseProgramVariablePath (std::vector<VariablePathComponent>& typePath, const Progra… in traverseProgramVariablePath()
1219 std::vector<VariablePathComponent> path; in getNumFeedbackVaryingComponents()
[all …]
Des31fProgramInterfaceDefinition.cpp646 std::vector<ProgramInterfaceDefinition::VariablePathComponent> path; in isValid()