Searched defs:BindingPoint (Results 1 – 1 of 1) sorted by relevance
93 struct BindingPoint struct95 enum Type103 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() function108 explicit BindingPoint (int location_) : type(BPTYPE_LOCATION), location(location_) {} in BindingPoint() function109 …explicit BindingPoint (const std::string& name_, int location_ = 0) : type(BPTYPE_NAME), name(name… in BindingPoint() argument