MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / DBG_OutText

Function DBG_OutText

ogsr_engine/xrGame/PHDebug.cpp:268–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266 }
267};
268void _cdecl DBG_OutText(LPCSTR s, ...)
269{
270 string64 t;
271 va_list marker;
272 va_start(marker, s);
273 vsprintf(t, s, marker);
274 va_end(marker);
275 DBG_DrawPHAbstruct(xr_new<SPHDBGOutText>(t));
276}
277
278void DBG_OpenCashedDraw() { dbg_ph_draw_mode = dmCashed; }
279void DBG_ClosedCashedDraw(u32 remove_time)

Callers 3

FrameStepMethod · 0.85

Calls 1

DBG_DrawPHAbstructFunction · 0.85

Tested by

no test coverage detected