Searched defs:MessageID (Results 1 – 2 of 2) sorted by relevance
273 struct MessageID struct275 GLenum source;276 GLenum type;277 GLuint id;279 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() argument280 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() argument282 …== (const MessageID& rhs) const { return source == rhs.source && type == rhs.type && id == rhs.id;} in operator ==()283 …!= (const MessageID& rhs) const { return source != rhs.source || type != rhs.type || id != rhs.id;} in operator !=()284 bool operator< (const MessageID& rhs) const in operator <()
309 class MessageID(univ.Integer): class