1
0
Fork 0
roguelike-game/resources/backing.fs

12 lines
194 B
Forth
Raw Permalink Normal View History

2021-11-29 14:59:01 -05:00
#version 330 core
out vec4 FragColor;
in vec2 TexCoords;
uniform sampler2D screenTexture;
void main()
{
vec3 col = texture(screenTexture, TexCoords).rgb;
FragColor = vec4(col, 1.0);
2021-10-21 08:44:52 -04:00
}