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

Function DebugPrint

SampleFramework12/v1.00/Utility.h:105–110  ·  view source on GitHub ↗

Outputs a string to the debugger output and stdout

Source from the content-addressed store, hash-verified

103
104// Outputs a string to the debugger output and stdout
105inline void DebugPrint(const std::wstring& str)
106{
107 std::wstring output = str + L"\n";
108 OutputDebugStringW(output.c_str());
109 std::printf("%ls", output.c_str());
110}
111
112// Gets an index from an index buffer
113inline uint32 GetIndex(const void* indices, uint32 idx, uint32 indexSize)

Callers

nothing calls this directly

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected