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

Function error_vprintf

engine/dlib/src/basis/encoder/basisu_enc.cpp:202–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200 }
201
202 void error_vprintf(const char* pFmt, va_list args)
203 {
204 char buf[8192];
205
206#ifdef _WIN32
207 vsprintf_s(buf, sizeof(buf), pFmt, args);
208#else
209 vsnprintf(buf, sizeof(buf), pFmt, args);
210#endif
211
212 fprintf(stderr, "ERROR: %s", buf);
213 }
214
215 void error_printf(const char *pFmt, ...)
216 {

Callers 2

error_printfFunction · 0.85
ocl_error_printfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected