aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/shaders
diff options
context:
space:
mode:
authorFalsePattern <me@falsepattern.com>2023-11-28 09:01:54 +0100
committermakamys <makamys@outlook.com>2023-12-01 13:13:38 +0100
commit1080bc281549b9154114e3f05c60f15b926dc21e (patch)
treefdae0cb3d04d32298ec0be484a752fb9114a2d12 /src/main/resources/shaders
parent6dc520d17d6bc920a4b87e7536678bc11e32b0cd (diff)
downloadNeodymium-1080bc281549b9154114e3f05c60f15b926dc21e.tar.gz
Neodymium-1080bc281549b9154114e3f05c60f15b926dc21e.tar.bz2
Neodymium-1080bc281549b9154114e3f05c60f15b926dc21e.zip
removed unnecessary shader in/out
Diffstat (limited to 'src/main/resources/shaders')
-rw-r--r--src/main/resources/shaders/chunk.frag1
-rw-r--r--src/main/resources/shaders/chunk.vert3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/main/resources/shaders/chunk.frag b/src/main/resources/shaders/chunk.frag
index 5cc33c1..03ae8e4 100644
--- a/src/main/resources/shaders/chunk.frag
+++ b/src/main/resources/shaders/chunk.frag
@@ -9,7 +9,6 @@ in mat4 ProjInv;
in vec4 FogColor;
in vec2 FogStartEnd;
in float FogFactor;
-flat in vec2 ProvokingTexCoord;
uniform sampler2D atlas;
uniform sampler2D lightTex;
diff --git a/src/main/resources/shaders/chunk.vert b/src/main/resources/shaders/chunk.vert
index f8a42a0..3e12f99 100644
--- a/src/main/resources/shaders/chunk.vert
+++ b/src/main/resources/shaders/chunk.vert
@@ -23,7 +23,6 @@ out mat4 ProjInv;
out vec4 FogColor;
out vec2 FogStartEnd;
out float FogFactor; // -1 means: disable fog
-flat out vec2 ProvokingTexCoord;
void main()
{
@@ -52,6 +51,4 @@ void main()
FogFactor = -1;
}
FogStartEnd = fogStartEnd;
-
- ProvokingTexCoord = aTexCoord;
} \ No newline at end of file