Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
32
GameTools/Zallad3D SceneClass/Shader_GlareP.h
Normal file
32
GameTools/Zallad3D SceneClass/Shader_GlareP.h
Normal file
@@ -0,0 +1,32 @@
|
||||
// Shader_GlareP.h: interface for the CShader_GlareP class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if !defined(AFX_SHADER_GLAREP_H__4E5D7A41_307E_44FD_9B03_5A98263E9D49__INCLUDED_)
|
||||
#define AFX_SHADER_GLAREP_H__4E5D7A41_307E_44FD_9B03_5A98263E9D49__INCLUDED_
|
||||
|
||||
#if _MSC_VER > 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER > 1000
|
||||
|
||||
#include "ShaderScene.h"
|
||||
#include "texture.h"
|
||||
|
||||
class CShader_GlareP : public CPixelShader
|
||||
{
|
||||
public:
|
||||
CShader_GlareP();
|
||||
virtual ~CShader_GlareP();
|
||||
virtual void Apply();
|
||||
virtual void SetupPixelShaderConstants();
|
||||
void SetNormalTexture(char *strTexName);
|
||||
|
||||
protected:
|
||||
CTexture *m_pIllumTexture;
|
||||
CTexture *m_pBumpTexture;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // !defined(AFX_SHADER_GLAREP_H__4E5D7A41_307E_44FD_9B03_5A98263E9D49__INCLUDED_)
|
||||
Reference in New Issue
Block a user