Home
last modified time | relevance | path

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

/external/deqp/framework/opengl/
DgluDrawUtil.hpp93 struct BindingPoint struct
95 enum Type
103 Type type; //!< Binding type (name or location).
104 std::string name; //!< Input name, or empty if is not binding by name.
105 int location; //!< Input location, or offset to named location if binding by name.
107 BindingPoint (void) : type(BPTYPE_LAST), location (0) {} in BindingPoint() function
108 explicit BindingPoint (int location_) : type(BPTYPE_LOCATION), location(location_) {} in BindingPoint() function
109 …explicit BindingPoint (const std::string& name_, int location_ = 0) : type(BPTYPE_NAME), name(name… in BindingPoint() argument