Mindustry/core/assets/shaders/screenspace.frag

8 lines
123 B
GLSL
Raw Normal View History

2020-06-11 23:03:27 +07:00
uniform sampler2D u_texture;
2020-06-15 05:41:42 +07:00
varying vec2 v_texCoords;
2020-06-11 23:03:27 +07:00
void main(){
2020-06-15 05:41:42 +07:00
gl_FragColor = texture2D(u_texture, v_texCoords);
2020-06-11 23:03:27 +07:00
}