aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-06 11:30:24 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-06 11:30:24 +0000
commitc7090180503f263c60ec34844992e0e8d4bea85a (patch)
tree6ecc5b2e16856db49de056738b36e1ba103d3049 /resources
parentcf4c73f2a75b470a4d4c4167105f92bc46f1926c (diff)
parent07012cf0982d3f86aebe83b5bdc4a67332c635da (diff)
downloadYAGE-c7090180503f263c60ec34844992e0e8d4bea85a.tar.gz
YAGE-c7090180503f263c60ec34844992e0e8d4bea85a.zip
Merge branch 'develop'
Diffstat (limited to 'resources')
-rw-r--r--resources/textureshader.vert3
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/textureshader.vert b/resources/textureshader.vert
index 3277d8b0..6a882bd0 100644
--- a/resources/textureshader.vert
+++ b/resources/textureshader.vert
@@ -18,6 +18,5 @@ void main()
fragment_position = vertex_position;
fragment_colour = vertex_colour;
- fragment_uv = vec2(vertex_uv.x, 1-vertex_uv.y);
-
+ fragment_uv = vec2(vertex_uv.x, 1-vertex_uv.y);
}