mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
8 lines
133 B
GLSL
8 lines
133 B
GLSL
layout(location=2) in vec4 pixelpos;
|
|
layout(location=0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0, 1.0, 1.0, 0.0);
|
|
}
|
|
|