mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
5849c83028
Added gl_renderbuffers CVAR that disables render buffers Added patch shader support to FShaderProgram Added OpenGL 2 fallback support to render buffers
9 lines
153 B
Text
9 lines
153 B
Text
|
|
in vec4 PositionInProjection;
|
|
out vec2 TexCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = PositionInProjection;
|
|
TexCoord = PositionInProjection.xy * 0.5 + 0.5;
|
|
}
|