| 58 | } |
| 59 | |
| 60 | static void EnableOpenGLDebugMsgType(GLenum type, bool assert, bool log) |
| 61 | { |
| 62 | auto &info = s_openglDebugMsgType[type % OGL_DEBUGMSG_TYPE_COUNT]; |
| 63 | info.assert = assert ? OGL_DBGMSG_ENABLED : OGL_DBGMSG_DISABLED; |
| 64 | info.log = log ? OGL_DBGMSG_ENABLED : OGL_DBGMSG_DISABLED; |
| 65 | } |
| 66 | |
| 67 | static void EnableOpenGLMessage(GLuint id, bool assert, bool log) |
| 68 | { |
no outgoing calls
no test coverage detected