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 'intern/cycles/graph/node.h')
-rw-r--r--intern/cycles/graph/node.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/intern/cycles/graph/node.h b/intern/cycles/graph/node.h
index 3c84dbdb4a7..16bd5e4358a 100644
--- a/intern/cycles/graph/node.h
+++ b/intern/cycles/graph/node.h
@@ -101,6 +101,15 @@ struct Node {
/* Type testing, taking into account base classes. */
bool is_a(const NodeType *type);
+ bool socket_is_modified(const SocketType &input) const;
+
+ bool is_modified();
+
+ void tag_modified();
+ void clear_modified();
+
+ void print_modified_sockets() const;
+
ustring name;
const NodeType *type;
@@ -109,6 +118,12 @@ struct Node {
protected:
const NodeOwner *owner;
+
+ SocketModifiedFlags socket_modified;
+
+ template<typename T> void set_if_different(const SocketType &input, T value);
+
+ template<typename T> void set_if_different(const SocketType &input, array<T> &value);
};
CCL_NAMESPACE_END