mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-13 15:41:17 +00:00
17 lines
No EOL
225 B
C++
17 lines
No EOL
225 B
C++
#ifndef __GL_SHADOWMAPSHADER_H
|
|
#define __GL_SHADOWMAPSHADER_H
|
|
|
|
#include "gl_shaderprogram.h"
|
|
|
|
class FShadowMapShader
|
|
{
|
|
public:
|
|
void Bind();
|
|
|
|
FBufferedUniform1f ShadowmapQuality;
|
|
|
|
private:
|
|
FShaderProgram mShader;
|
|
};
|
|
|
|
#endif |