From 09fa4f165ebdec4df9d2c8848f600be1b68a94bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81my=20Bouquet?= Date: Sat, 1 Apr 2017 22:06:11 +0200 Subject: [PATCH] fixed bad comma in previous commit --- jme3-core/src/main/resources/Common/ShaderLib/Skinning.glsllib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-core/src/main/resources/Common/ShaderLib/Skinning.glsllib b/jme3-core/src/main/resources/Common/ShaderLib/Skinning.glsllib index 70f812b63..293879159 100644 --- a/jme3-core/src/main/resources/Common/ShaderLib/Skinning.glsllib +++ b/jme3-core/src/main/resources/Common/ShaderLib/Skinning.glsllib @@ -46,7 +46,7 @@ void Skinning_Compute(inout vec4 position, inout vec3 normal){ } } -void Skinning_Compute(inout vec4 position, , inout vec3 normal, inout vec3 tangent){ +void Skinning_Compute(inout vec4 position, inout vec3 normal, inout vec3 tangent){ if (inHWBoneWeight.x != 0.0) { #if NUM_WEIGHTS_PER_VERT == 1 position = m_BoneMatrices[int(inHWBoneIndex.x)] * position;