mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
737bf15ad8
Compiles but only draws a black screen. Something must be missing but no idea yet what that might be.
10 lines
192 B
GLSL
10 lines
192 B
GLSL
|
|
layout(location=0) in vec2 TexCoord;
|
|
layout(location=0) out vec4 FragColor;
|
|
|
|
layout(binding=0) uniform sampler2D Bloom;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(texture(Bloom, TexCoord).rgb, 0.0);
|
|
}
|