shaders: Fix damage vertex shader

shader-damage-experiments
Andri Yngvason 2020-03-26 22:29:16 +00:00
parent ae90348ece
commit 222d636bc7
1 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
uniform mat2 u_proj;
attribute vec2 pos;
attribute vec2 texture;
@ -8,5 +6,5 @@ varying vec2 v_texture;
void main()
{
v_texture = texture;
gl_Position = vec4(u_proj * pos, 0, 1);
gl_Position = vec4(pos, 0, 1);
}