Files
Client/GameTools/Zallad3D SceneClass/Shader_GlareP.h
LGram16 dd97ddec92 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>
2025-11-29 20:17:20 +09:00

33 lines
778 B
C++

// 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_)