mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-16 15:31:30 +00:00
15 lines
186 B
C
15 lines
186 B
C
|
#ifndef __GL_SHADOWMAPSHADER_H
|
||
|
#define __GL_SHADOWMAPSHADER_H
|
||
|
|
||
|
#include "gl_shaderprogram.h"
|
||
|
|
||
|
class FShadowMapShader
|
||
|
{
|
||
|
public:
|
||
|
void Bind();
|
||
|
|
||
|
private:
|
||
|
FShaderProgram mShader;
|
||
|
};
|
||
|
|
||
|
#endif
|