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 =()
178 …VariablePathByPathName (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath…
Des31fProgramInterfaceQueryTestCase.cpp46 using ProgramInterfaceDefinition::VariablePathComponent;
139 static glu::MatrixOrder getMatrixOrderFromPath (const std::vector<VariablePathComponent>& path) in getMatrixOrderFromPath()
227 …virtual void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::st…
244 std::vector<VariablePathComponent> path; in validate()
358 …void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string&…
372 void TypeValidator::validateSingleVariable (const std::vector<VariablePathComponent>& path, const s… in validateSingleVariable()
432 …void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string&…
445 void ArraySizeValidator::validateSingleVariable (const std::vector<VariablePathComponent>& path, co… in validateSingleVariable()
447 const VariablePathComponent nullComponent; in validateSingleVariable()
448 …const VariablePathComponent& enclosingcomponent = (path.size() > 1) ? (path[path.size()-2]) : (nul… in validateSingleVariable()
[all …]
Des31fProgramInterfaceDefinitionUtil.cpp216 using ProgramInterfaceDefinition::VariablePathComponent;
691 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const char* subPath… in traverseVariablePath()
695 typePath.push_back(VariablePathComponent(&type)); in traverseVariablePath()
733 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const std::string& … in traverseVariablePath()
738 typePath.push_back(VariablePathComponent(&var)); in traverseVariablePath()
742 static bool traverseShaderVariablePath (std::vector<VariablePathComponent>& typePath, const Program… in traverseShaderVariablePath()
770 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath()
787 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath()
800 static bool traverseProgramVariablePath (std::vector<VariablePathComponent>& typePath, const Progra… in traverseProgramVariablePath()
1192 std::vector<VariablePathComponent> path; in getNumFeedbackVaryingComponents()
[all …]
Des31fProgramInterfaceDefinition.cpp640 std::vector<ProgramInterfaceDefinition::VariablePathComponent> path; in isValid()