Browse Source

Merge pull request #59159 from RandomShaper/fix_blend_shapes_3.4

Rémi Verschelde 3 years ago
parent
commit
69e9e8f87d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gles3/shaders/blend_shape.glsl

+ 1 - 1
drivers/gles3/shaders/blend_shape.glsl

@@ -26,7 +26,7 @@ ARRAY_INDEX=8,
 layout(location = 0) in highp VFORMAT vertex_attrib;
 /* clang-format on */
 #ifdef ENABLE_OCTAHEDRAL_COMPRESSION
-layout(location = 2) in vec4 normal_tangent_attrib;
+layout(location = 1) in vec4 normal_tangent_attrib;
 #else
 layout(location = 1) in vec3 normal_attrib;
 #endif