[Bf-blender-cvs] [d5af895419b] master: Fix missing matrix includes

Campbell Barton noreply at git.blender.org
Tue Feb 7 04:07:56 CET 2023


Commit: d5af895419be354aee22d1459a3563741c65dc2e
Author: Campbell Barton
Date:   Tue Feb 7 14:07:21 2023 +1100
Branches: master
https://developer.blender.org/rBd5af895419be354aee22d1459a3563741c65dc2e

Fix missing matrix includes

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_scale_instances.cc
M	source/blender/nodes/geometry/nodes/node_geo_transform_geometry.cc
M	source/blender/nodes/geometry/nodes/node_geo_translate_instances.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_scale_instances.cc b/source/blender/nodes/geometry/nodes/node_geo_scale_instances.cc
index 7413be9d260..d9a176774bd 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_scale_instances.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_scale_instances.cc
@@ -1,6 +1,8 @@
 /* SPDX-License-Identifier: GPL-2.0-or-later */
 
+#include "BLI_math_matrix.h"
 #include "BLI_math_matrix.hh"
+
 #include "BLI_task.hh"
 
 #include "BKE_instances.hh"
diff --git a/source/blender/nodes/geometry/nodes/node_geo_transform_geometry.cc b/source/blender/nodes/geometry/nodes/node_geo_transform_geometry.cc
index a7a103df6e1..4f7bf3714f2 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_transform_geometry.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_transform_geometry.cc
@@ -4,6 +4,7 @@
 #  include <openvdb/openvdb.h>
 #endif
 
+#include "BLI_math_matrix.hh"
 #include "BLI_math_matrix_types.hh"
 
 #include "DNA_mesh_types.h"
diff --git a/source/blender/nodes/geometry/nodes/node_geo_translate_instances.cc b/source/blender/nodes/geometry/nodes/node_geo_translate_instances.cc
index 3478a96f9eb..fffdaf487d3 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_translate_instances.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_translate_instances.cc
@@ -2,6 +2,8 @@
 
 #include "BLI_task.hh"
 
+#include "BLI_math_matrix.hh"
+
 #include "BKE_instances.hh"
 
 #include "node_geometry_util.hh"



More information about the Bf-blender-cvs mailing list