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

  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 73 struct VarTypeComponent
85 VarTypeComponent (Type type_, int index_) : type(type_), index(index_) {}
86 VarTypeComponent (void) : type(TYPE_LAST), index(0) {}
88 bool operator== (const VarTypeComponent& other) const { return type == other.type && index == other.index; }
89 bool operator!= (const VarTypeComponent& other) const { return type != other.type || index != other.index; }
95 typedef std::vector<VarTypeComponent> TypeComponentVector;
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
    [all...]
gluVarTypeUtil.cpp 125 path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx));
138 path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx));
143 path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx));
148 path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx));
170 case VarTypeComponent::ARRAY_ELEMENT:
174 case VarTypeComponent::MATRIX_COLUMN
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 311 case glu::VarTypeComponent::STRUCT_MEMBER: prefix = "_m"; break;
312 case glu::VarTypeComponent::ARRAY_ELEMENT: prefix = "_e"; break;
313 case glu::VarTypeComponent::MATRIX_COLUMN: prefix = "_c"; break;
314 case glu::VarTypeComponent::VECTOR_COMPONENT: prefix = "_s"; break;
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp     [all...]

Completed in 110 milliseconds