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:
Diffstat (limited to 'source/blender/blenkernel/BKE_node_ui_storage.hh')
-rw-r--r--source/blender/blenkernel/BKE_node_ui_storage.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_node_ui_storage.hh b/source/blender/blenkernel/BKE_node_ui_storage.hh
index 951c3bdc62d..231eb11d473 100644
--- a/source/blender/blenkernel/BKE_node_ui_storage.hh
+++ b/source/blender/blenkernel/BKE_node_ui_storage.hh
@@ -19,6 +19,7 @@
#include "BLI_hash.hh"
#include "BLI_map.hh"
#include "BLI_session_uuid.h"
+#include "BLI_set.hh"
#include "DNA_ID.h"
#include "DNA_modifier_types.h"
@@ -76,6 +77,7 @@ struct NodeWarning {
struct NodeUIStorage {
blender::Vector<NodeWarning> warnings;
+ blender::Set<std::string> attribute_name_hints;
};
struct NodeTreeUIStorage {
@@ -94,3 +96,8 @@ void BKE_nodetree_error_message_add(bNodeTree &ntree,
const bNode &node,
const NodeWarningType type,
std::string message);
+
+void BKE_nodetree_attribute_hint_add(bNodeTree &ntree,
+ const NodeTreeEvaluationContext &context,
+ const bNode &node,
+ const blender::StringRef attribute_name);