raze-gles/wadsrc/static/engine/shaders/pp/screenquad.vp
Christoph Oelckers 737bf15ad8 - added GZDoom's postprocessing/presentation code.
Compiles but only draws a black screen. Something must be missing but no idea yet what that might be.
2019-12-28 22:36:47 +01:00

10 lines
195 B
Text

layout(location = 0) in vec4 PositionInProjection;
layout(location = 1) in vec2 UV;
layout(location = 0) out vec2 TexCoord;
void main()
{
gl_Position = PositionInProjection;
TexCoord = UV;
}