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
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-02-16 14:30:42 +0300
committerJacques Lucke <jacques@blender.org>2021-02-16 14:30:42 +0300
commit5688f791f51827d77f4479bee90c4e88add72ce6 (patch)
tree188ca52923a3e74f2bf690de5d7bd303d5dfe5a7 /source/blender/nodes/NOD_geometry_exec.hh
parent21de1f91480ac2165517a4ba244fa0708a939baf (diff)
Geometry Nodes: move realize-instances code to blenkernel
I need to access this functionality from modifier code. Therefore it should not be in the nodes module.
Diffstat (limited to 'source/blender/nodes/NOD_geometry_exec.hh')
-rw-r--r--source/blender/nodes/NOD_geometry_exec.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/NOD_geometry_exec.hh b/source/blender/nodes/NOD_geometry_exec.hh
index 222aa559e8a..1149ab51ad0 100644
--- a/source/blender/nodes/NOD_geometry_exec.hh
+++ b/source/blender/nodes/NOD_geometry_exec.hh
@@ -20,6 +20,7 @@
#include "BKE_attribute_access.hh"
#include "BKE_geometry_set.hh"
+#include "BKE_geometry_set_instances.hh"
#include "BKE_persistent_data_handle.hh"
#include "DNA_node_types.h"
@@ -38,6 +39,7 @@ using bke::Float3ReadAttribute;
using bke::Float3WriteAttribute;
using bke::FloatReadAttribute;
using bke::FloatWriteAttribute;
+using bke::geometry_set_realize_instances;
using bke::Int32ReadAttribute;
using bke::Int32WriteAttribute;
using bke::PersistentDataHandleMap;