Files
Mindustry/core/assets/bloomshaders/screenspace.vert

8 lines
152 B
GLSL
Raw Normal View History

2020-06-11 12:03:27 -04:00
attribute vec4 a_position;
2019-06-24 19:39:57 -04:00
attribute vec2 a_texCoord0;
2020-06-11 12:03:27 -04:00
varying vec2 v_texCoords;
2020-05-11 00:41:35 -04:00
void main(){
2019-06-24 19:39:57 -04:00
v_texCoords = a_texCoord0;
gl_Position = a_position;
}