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

Method App

SampleFramework12/v1.02/App.cpp:36–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34App* GlobalApp = nullptr;
35
36App::App(const wchar* appName, const wchar* cmdLine) : window(nullptr, appName, WS_OVERLAPPEDWINDOW,
37 WS_EX_APPWINDOW, 1280, 720),
38 applicationName(appName)
39
40{
41 GlobalApp = this;
42 for(uint32 i = 0; i < NumTimeDeltaSamples; ++i)
43 timeDeltaBuffer[i] = 0.0f;
44
45 SampledSpectrum::Init();
46
47 ParseCommandLine(cmdLine);
48}
49
50App::~App()
51{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected