Przeglądaj źródła

Fix broken normals in meshes with blend shapes

Pedro J. Estébanez 3 lat temu
rodzic
commit
d780a0c8db
1 zmienionych plików z 1 dodań i 1 usunięć
  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