Searched defs:MessageID (Results 1 – 1 of 1) sorted by relevance
193 struct MessageID struct195 GLenum source;196 GLenum type;197 GLuint id;199 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() argument200 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() function202 …== (const MessageID& rhs) const { return source == rhs.source && type == rhs.type && id == rhs.id;} in operator ==()203 …!= (const MessageID& rhs) const { return source != rhs.source || type != rhs.type || id != rhs.id;} in operator !=()204 bool operator< (const MessageID& rhs) const in operator <()