Searched defs:MessageID (Results 1 – 3 of 3) sorted by relevance
23 MessageID string member
279 struct MessageID struct281 GLenum source;282 GLenum type;283 GLuint id;285 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() argument286 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() function288 …== (const MessageID& rhs) const { return source == rhs.source && type == rhs.type && id == rhs.id;} in operator ==()289 …!= (const MessageID& rhs) const { return source != rhs.source || type != rhs.type || id != rhs.id;} in operator !=()290 bool operator< (const MessageID& rhs) const in operator <()
526 class MessageID(univ.Integer): class