Home
last modified time | relevance | path

Searched defs:MessageID (Results 1 – 1 of 1) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fDebugTests.cpp261 struct MessageID struct
263 GLenum source;
264 GLenum type;
265 GLuint id;
267 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() function
268 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() function
270 …== (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 <()