diff options
Diffstat (limited to 'shaders')
-rw-r--r-- | shaders/world.vert | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shaders/world.vert b/shaders/world.vert index ce7fa5a..10869d6 100644 --- a/shaders/world.vert +++ b/shaders/world.vert @@ -3,6 +3,7 @@ attribute vec2 tex_coord; uniform vec4 tex_color; uniform mat4 ortho; +uniform mat4 transform; varying vec2 texCoord; varying vec4 color; @@ -10,5 +11,5 @@ varying vec4 color; void main(){ color = tex_color; texCoord = tex_coord; - gl_Position = ortho * vec4(coord2d.xyz, 1.0); + gl_Position = ortho * transform * vec4(coord2d.xyz, 1.0); } |