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

Function MakeString

SampleFramework12/v1.02/Utility.cpp:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 8

RenderSunShadowMapMethod · 0.85
RenderHUDMethod · 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