| 1247 | } |
| 1248 | |
| 1249 | void GL_APIENTRY debugProcCb(GLenum _source, GLenum _type, GLuint _id, GLenum _severity, GLsizei /*_length*/, const GLchar* _message, const void* /*_userParam*/) |
| 1250 | { |
| 1251 | if (GL_DEBUG_SEVERITY_NOTIFICATION != _severity) |
| 1252 | { |
| 1253 | BX_TRACE("src %s, type %s, id %d, severity %s, '%s'" |
| 1254 | , toString(_source) |
| 1255 | , toString(_type) |
| 1256 | , _id |
| 1257 | , toString(_severity) |
| 1258 | , _message |
| 1259 | ); |
| 1260 | BX_UNUSED(_source, _type, _id, _severity, _message); |
| 1261 | } |
| 1262 | } |
| 1263 | |
| 1264 | GLint glGet(GLenum _pname) |
| 1265 | { |
nothing calls this directly
no test coverage detected