Home
last modified time | relevance | path

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

/external/deqp/modules/gles31/functional/
Des31fDebugTests.cpp193 struct MessageID struct
195 GLenum source;
196 GLenum type;
197 GLuint id;
199 MessageID (void) : source(GL_NONE), type(GL_NONE), id(0) {} in MessageID() argument
200 MessageID (GLenum source_, GLenum type_, GLuint id_) : source(source_), type(type_), id(id_) {} in MessageID() function
202 …== (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 <()