MCPcopy Create free account
hub / github.com/KhronosGroup/KTX-Software / debug_printf

Function debug_printf

external/basisu/transcoder/basisu_transcoder.cpp:171–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169 }
170
171 void debug_printf(const char* pFmt, ...)
172 {
173#if BASISU_FORCE_DEVEL_MESSAGES
174 g_debug_printf = true;
175#endif
176 if (g_debug_printf)
177 {
178 va_list args;
179 va_start(args, pFmt);
180 vprintf(pFmt, args);
181 va_end(args);
182 }
183 }
184} // namespace basisu
185
186namespace basist

Callers 15

unpack_and_validate_modeFunction · 0.85
initMethod · 0.85
compressMethod · 0.85
init_global_codebooksMethod · 0.85
init_etc1_imagesMethod · 0.85

Calls 1

vprintfFunction · 0.85

Tested by

no test coverage detected