MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / MakeString

Function MakeString

SampleFramework12/v1.00/Utility.cpp:43–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43std::wstring MakeString(const wchar* format, ...)
44{
45 wchar buffer[1024] = { 0 };
46 va_list args;
47 va_start(args, format);
48 vswprintf_s(buffer, ArraySize_(buffer), format, args);
49 return std::wstring(buffer);
50}
51
52std::string MakeString(const char* format, ...)
53{

Callers 9

InitializeMethod · 0.85
RenderHUDMethod · 0.85
RenderSunShadowMapMethod · 0.85
LoadTextureFunction · 0.85
AfterResetMethod · 0.85
CreateWithAssimpMethod · 0.85
CreateFromMeshDataMethod · 0.85
CreateRootSignatureFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected