Selaa lähdekoodia

simplify calculation of max in grayscale

(cherry picked from commit 79a75cd68337820a3ae7e5f1f556bbebab138dd8)
Markus Sauermann 3 vuotta sitten
vanhempi
commit
156d9d1643
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      scene/resources/visual_shader_nodes.cpp

+ 1 - 2
scene/resources/visual_shader_nodes.cpp

@@ -1796,8 +1796,7 @@ String VisualShaderNodeColorFunc::generate_code(Shader::Mode p_mode, VisualShade
 			code += "\t\tvec3 c = " + p_input_vars[0] + ";\n";
 			code += "\t\tfloat max1 = max(c.r, c.g);\n";
 			code += "\t\tfloat max2 = max(max1, c.b);\n";
-			code += "\t\tfloat max3 = max(max1, max2);\n";
-			code += "\t\t" + p_output_vars[0] + " = vec3(max3, max3, max3);\n";
+			code += "\t\t" + p_output_vars[0] + " = vec3(max2, max2, max2);\n";
 			code += "\t}\n";
 			break;
 		case FUNC_SEPIA: