mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
5 lines
147 B
Plaintext
5 lines
147 B
Plaintext
|
uniform sampler2D src_color;
|
||
|
|
||
|
vec4 aa_apply(sampler2D tex, vec2 fragCoord, vec2 resolution) {
|
||
|
return texture(src_color, fragCoord / resolution);
|
||
|
}
|