| 35 | } |
| 36 | |
| 37 | void glErrorCheck(const char *pMsg, const char* pFile, int pLine) |
| 38 | { |
| 39 | // Skipped in release mode |
| 40 | #ifndef NDEBUG |
| 41 | commonErrorCheck(pMsg, pFile, pLine); |
| 42 | #endif |
| 43 | } |
| 44 | |
| 45 | void glForceErrorCheck(const char *pMsg, const char* pFile, int pLine) |
| 46 | { |
nothing calls this directly
no test coverage detected