Mindustry/core/assets/shaders/screenspace.vert

10 lines
159 B
GLSL
Raw Normal View History

2020-06-11 08:07:21 +07:00
attribute vec4 a_position;
attribute vec2 a_texCoord0;
2020-06-15 05:41:42 +07:00
varying vec2 v_texCoords;
2020-06-11 08:07:21 +07:00
void main(){
2020-06-15 05:41:42 +07:00
v_texCoords = a_texCoord0;
2020-06-11 08:07:21 +07:00
gl_Position = a_position;
}