mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-24 21:01:35 +00:00
8 lines
80 B
GLSL
8 lines
80 B
GLSL
in vec4 pixelpos;
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0);
|
|
}
|
|
|