MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / avar

Function avar

Engine/source/platform/platformAssert.cpp:158–166  ·  view source on GitHub ↗

--------------------------------------

Source from the content-addressed store, hash-verified

156
157//--------------------------------------
158const char* avar(const char *message, ...)
159{
160 static char buffer[4096];
161 va_list args;
162 va_start(args, message);
163 dVsprintf(buffer, sizeof(buffer), message, args);
164 va_end(args);
165 return( buffer );
166}
167
168//-----------------------------------------------------------------------------
169

Callers 15

renderPathMethod · 0.85
readFieldsMethod · 0.85
writeFieldsMethod · 0.85
onRenderMethod · 0.85
getBinRangeMethod · 0.85
allocRenderTargetMethod · 0.85
clipToPlaneFunction · 0.85
preloadMethod · 0.85
readVectorFunction · 0.85
writeVectorFunction · 0.85
ew_initMethod · 0.85

Calls 1

dVsprintfFunction · 0.85

Tested by 1

renderTooltipMethod · 0.68