Searched defs:VariablePathComponent (Results 1 - 1 of 1) sorted by relevance

/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.hpp42 class VariablePathComponent class in namespace:deqp::gles31::Functional::ProgramInterfaceDefinition
45 VariablePathComponent (void) :m_type(TYPE_LAST) { } function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; } function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; } function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; } function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
50 VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { } function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
51 VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type; m_data = other.m_data; return *this; }
179 bool findProgramVariablePathByPathName (std::vector<ProgramInterfaceDefinition::VariablePathComponent>
[all...]

Completed in 1681 milliseconds