diffuse light

This commit is contained in:
Mamitiana RASOLOJAONA
2024-03-22 15:48:47 +01:00
parent e0d6eb025c
commit 5c9ee0180f
14 changed files with 453 additions and 219 deletions

View File

@@ -8,9 +8,8 @@
#include "d3dclass.h"
#include "cameraclass.h"
#include "modelclass.h"
#include "textureshaderclass.h"
#include "lightshaderclass.h"
#include "lightclass.h"
/////////////
// GLOBALS //
@@ -36,13 +35,14 @@ public:
bool Frame();
private:
bool Render();
bool Render(float);
private:
D3DClass* m_Direct3D;
CameraClass* m_Camera;
ModelClass* m_Model;
TextureShaderClass* m_TextureShader;
LightShaderClass* m_LightShader;
LightClass* m_Light;
};
#endif