From 9bbbd833b22e65eb6552c6522d5c64ecfc3d669b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Tue, 16 Sep 2025 14:50:03 +0200 Subject: [PATCH] Fix: Material: Compilation error for GPU material using voronoi node This was caused by a wrong include. --- .../gpu/shaders/material/gpu_shader_material_voronoi.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/gpu/shaders/material/gpu_shader_material_voronoi.glsl b/source/blender/gpu/shaders/material/gpu_shader_material_voronoi.glsl index 3357b3a69a9..652011f0e96 100644 --- a/source/blender/gpu/shaders/material/gpu_shader_material_voronoi.glsl +++ b/source/blender/gpu/shaders/material/gpu_shader_material_voronoi.glsl @@ -18,7 +18,7 @@ */ #include "gpu_shader_common_hash.glsl" -#include +#include "gpu_shader_utildefines_lib.glsl" #define SHD_VORONOI_EUCLIDEAN 0 #define SHD_VORONOI_MANHATTAN 1