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

10 lines
159 B
GLSL
Raw Normal View History

2020-06-10 21:07:21 -04:00
attribute vec4 a_position;
attribute vec2 a_texCoord0;
2020-06-14 18:41:42 -04:00
varying vec2 v_texCoords;
2020-06-10 21:07:21 -04:00
void main(){
2020-06-14 18:41:42 -04:00
v_texCoords = a_texCoord0;
2020-06-10 21:07:21 -04:00
gl_Position = a_position;
}