Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2022-02-24 21:38:16 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-02-24 21:38:16 +0300
commit8fb7c50aabdf79d7c0f72a43c624cbbabbe146a7 (patch)
tree9e4c79dfe5b4683c731985ae2c61e773a15b880f /source
parent4c66bd5da256779ef5a308d86abfe9b88f4a039b (diff)
Fix compiler error in Windows
In some compilers this file fails because the function `BKE_mesh_poly_normals_ensure`is not defined.
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_input_mesh_face_is_planar.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_mesh_face_is_planar.cc b/source/blender/nodes/geometry/nodes/node_geo_input_mesh_face_is_planar.cc
index 1113087b264..59b8ceb1caa 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_input_mesh_face_is_planar.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_input_mesh_face_is_planar.cc
@@ -4,6 +4,8 @@
#include "DNA_meshdata_types.h"
#include "node_geometry_util.hh"
+#include "BKE_mesh.h"
+
namespace blender::nodes::node_geo_input_mesh_face_is_planar_cc {
static void node_declare(NodeDeclarationBuilder &b)