This commit is contained in:
andreja6
2018-10-27 02:24:08 -07:00
parent f5f5f269d5
commit e83a67ade2
3 changed files with 70 additions and 2 deletions

4
Demo.h
View File

@@ -35,6 +35,7 @@ class Demo { // : public GApp {
RenderDevice* renderDevice;
UserInput* userInput;
PropertyWindow* _propWindow;
void generateShadowMap(const CoordinateFrame& lightViewMatrix) const;
private:
void initGUI();
HWND _hWndMain;
@@ -47,7 +48,8 @@ class Demo { // : public GApp {
HWND _hwndToolbox;
HWND _buttonTest;
HWND _hwndRenderer;
G3D::TextureRef shadowMap;
double lightProjX, lightProjY, lightProjNear, lightProjFar;
protected:
Stopwatch m_graphicsWatch;
Stopwatch m_logicWatch;