Home
last modified time | relevance | path

Searched defs:VarTypeComponent (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/opengl/
DgluVarTypeUtil.hpp73 struct VarTypeComponent struct
75 enum Type
85 VarTypeComponent (Type type_, int index_) : type(type_), index(index_) {} in VarTypeComponent() argument
86 VarTypeComponent (void) : type(TYPE_LAST), index(0) {} in VarTypeComponent() function
88 …or== (const VarTypeComponent& other) const { return type == other.type && index == other.index; } in operator ==()
89 …or!= (const VarTypeComponent& other) const { return type != other.type || index != other.index; } in operator !=()
91 Type type;
92 int index;