| 210 | } |
| 211 | |
| 212 | void debug_printf(const char* pFmt, ...) |
| 213 | { |
| 214 | #if BASISU_FORCE_DEVEL_MESSAGES |
| 215 | g_debug_printf = true; |
| 216 | #endif |
| 217 | if (g_debug_printf) |
| 218 | { |
| 219 | va_list args; |
| 220 | va_start(args, pFmt); |
| 221 | vprintf(pFmt, args); |
| 222 | va_end(args); |
| 223 | } |
| 224 | } |
| 225 | } // namespace basisu |
| 226 | |
| 227 | namespace basist |
no outgoing calls
no test coverage detected