Searched refs:SubTypeAccess (Results 1 - 4 of 4) sorted by relevance

/external/deqp/framework/opengl/
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...]
H A DgluVarTypeUtil.cpp83 // SubTypeAccess
85 SubTypeAccess::SubTypeAccess (const VarType& type) function in class:glu::SubTypeAccess
/external/deqp/modules/gles31/functional/
H A Des31fUniformLocationTests.cpp139 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).component(0).getPath());
141 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).column(0).component(0).getPath());
H A Des31fSSBOLayoutCase.cpp1127 const glu::SubTypeAccess& accessPath)
1196 generateCompareSrc(src, resultVar, layout, block, instanceNdx, blockPtr, bufVar, glu::SubTypeAccess(bufVar.getType()));
1211 const glu::SubTypeAccess& accessPath)
1279 generateWriteSrc(src, layout, block, instanceNdx, blockPtr, bufVar, glu::SubTypeAccess(bufVar.getType()));
1570 const glu::SubTypeAccess& accessPath)
1627 copyNonWrittenData(layout, block, instanceNdx, srcBlockPtr, dstBlockPtr, bufVar, glu::SubTypeAccess(bufVar.getType()));

Completed in 1532 milliseconds