MCPcopy Create free account
hub / github.com/defold/defold / debug_printf

Function debug_printf

engine/dlib/src/basis/transcoder/basisu_transcoder.cpp:212–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
227namespace basist

Calls

no outgoing calls

Tested by

no test coverage detected