| 781 | } |
| 782 | |
| 783 | static void SDL_GL_SetAttributeErrCheck(SDL_GLattr attr, int value) { |
| 784 | if (SDL_GL_SetAttribute(attr, value) != 0) { |
| 785 | FatalError("Error", "Could not set SDL_GL_attribute %d", (int)attr); |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | void GLAPIENTRY amd_debug_callback(GLuint id, GLenum category, GLenum severity, GLsizei length, const GLchar* message, void* userParam) { |
| 790 | LOGW << message << std::endl; |
no test coverage detected