Searched defs:MessageID (Results 1 – 1 of 1) sorted by relevance
261 struct MessageID struct263 GLenum source;264 GLenum type;265 GLuint id;267 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() function268 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() function270 …== (const MessageID& rhs) const { return source == rhs.source && type == rhs.type && id == rhs.id;} in operator ==()271 …!= (const MessageID& rhs) const { return source != rhs.source || type != rhs.type || id != rhs.id;} in operator !=()272 bool operator< (const MessageID& rhs) const in operator <()