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

Method App

SampleFramework12/v1.00/App.cpp:35–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected