Pārlūkot izejas kodu

Define normal_attrib when not using octahedral compression in GLES3

clayjohn 4 gadi atpakaļ
vecāks
revīzija
81dc6a7688
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      drivers/gles3/shaders/scene.glsl

+ 2 - 0
drivers/gles3/shaders/scene.glsl

@@ -27,6 +27,8 @@ layout(location = 0) in highp vec4 vertex_attrib;
 /* clang-format on */
 #ifdef ENABLE_OCTAHEDRAL_COMPRESSION
 layout(location = 1) in vec4 normal_tangent_attrib;
+#else
+layout(location = 1) in vec3 normal_attrib;
 #endif
 #if defined(ENABLE_TANGENT_INTERP) || defined(ENABLE_NORMALMAP) || defined(LIGHT_USE_ANISOTROPY)
 #ifdef ENABLE_OCTAHEDRAL_COMPRESSION