summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2017-12-10 10:25:00 +0100
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-01-13 03:39:33 +0100
commita82718cb7f06e1351eee865cc2b2cc20d69eabaa (patch)
tree8ffe82dc931a654e4a8344e6eb86c6b06483d190
parentSection parser now in a separate file (diff)
downloadAltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar.gz
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar.bz2
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar.lz
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar.xz
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.tar.zst
AltCraft-a82718cb7f06e1351eee865cc2b2cc20d69eabaa.zip
-rw-r--r--cwd/shaders/face.fs2
-rw-r--r--cwd/shaders/face.vs2
2 files changed, 2 insertions, 2 deletions
diff --git a/cwd/shaders/face.fs b/cwd/shaders/face.fs
index 926149b..c4405d4 100644
--- a/cwd/shaders/face.fs
+++ b/cwd/shaders/face.fs
@@ -2,7 +2,7 @@
in VS_OUT {
vec2 UvPosition;
- vec4 Texture;
+ vec2 Texture;
vec3 Color;
vec2 Light;
} fs_in;
diff --git a/cwd/shaders/face.vs b/cwd/shaders/face.vs
index dbb8dd8..5431ff2 100644
--- a/cwd/shaders/face.vs
+++ b/cwd/shaders/face.vs
@@ -8,7 +8,7 @@ layout (location = 13) in vec2 light;
out VS_OUT {
vec2 UvPosition;
- vec4 Texture;
+ vec2 Texture;
vec3 Color;
vec2 Light;
} vs_out;