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

/external/deqp/framework/opengl/
H A DgluVarTypeUtil.cpp83 // SubTypeAccess
85 SubTypeAccess::SubTypeAccess (const VarType& type) function in class:glu::SubTypeAccess
H A DgluVarTypeUtil.hpp125 class SubTypeAccess class in namespace:glu
128 SubTypeAccess (const VarType& type);
130 SubTypeAccess& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access struct element.
131 SubTypeAccess& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access array element.
132 SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column.
133 SubTypeAccess& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access component.
134 SubTypeAccess& parent (void) { DE_ASSERT(!m_path.empty()); m_path.pop_back(); return *this; }
136 SubTypeAccess member (int ndx) const { return SubTypeAccess(*this).member(ndx); }
137 SubTypeAccess elemen
[all...]

Completed in 70 milliseconds