HomeSort by relevance Sort by last modified time
    Searched refs:SubTypeAccess (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 125 class SubTypeAccess
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 element (int ndx) const { return SubTypeAccess(*this).element(ndx);
    [all...]
gluVarTypeUtil.cpp 83 // SubTypeAccess
85 SubTypeAccess::SubTypeAccess (const VarType& type)
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.cpp 139 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).component(0).getPath());
141 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).column(0).component(0).getPath());
    [all...]
es31fSSBOLayoutCase.cpp     [all...]

Completed in 215 milliseconds