From ab786f1f6ea398fe0b91d6ec7c039468a90c044b Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 13 Apr 2021 13:22:54 +0300 Subject: [PATCH] Add the group and weight attributes to msp_interface.glsl This got forgotten in e1d0738. --- shaderlib/msp_interface.glsl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shaderlib/msp_interface.glsl b/shaderlib/msp_interface.glsl index fbbcec3b..ed40aa4a 100644 --- a/shaderlib/msp_interface.glsl +++ b/shaderlib/msp_interface.glsl @@ -42,6 +42,8 @@ layout(location=0) in vec4 vertex; layout(location=1) in vec4 color; layout(location=2) in vec3 normal; layout(location=3) in vec3 tangent; +layout(location=4) in vec4 group; +layout(location=5) in vec4 weight; layout(location=6) in vec4 texcoord; layout(location=7) in vec4 texcoord1; layout(location=8) in vec4 texcoord2; -- 2.43.0