From bfdb27f49402dfebeea8b3516cd0ae085b158642 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 12 May 2020 10:57:04 +0200 Subject: Fix incorrect assert in Cycles node socket get/set functions Thanks to Subrahmanya Oruganti for spotting these. --- intern/cycles/graph/node.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern/cycles/graph/node.cpp') diff --git a/intern/cycles/graph/node.cpp b/intern/cycles/graph/node.cpp index 1439fb5a407..c437c6fda1e 100644 --- a/intern/cycles/graph/node.cpp +++ b/intern/cycles/graph/node.cpp @@ -133,7 +133,7 @@ void Node::set(const SocketType &input, const Transform &value) void Node::set(const SocketType &input, Node *value) { - assert(input.type == SocketType::TRANSFORM); + assert(input.type == SocketType::NODE); get_socket_value(this, input) = value; } @@ -213,7 +213,7 @@ float Node::get_float(const SocketType &input) const float2 Node::get_float2(const SocketType &input) const { - assert(input.type == SocketType::FLOAT); + assert(input.type == SocketType::POINT2); return get_socket_value(this, input); } @@ -272,7 +272,7 @@ const array &Node::get_float_array(const SocketType &input) const const array &Node::get_float2_array(const SocketType &input) const { - assert(input.type == SocketType::FLOAT_ARRAY); + assert(input.type == SocketType::POINT2_ARRAY); return get_socket_value>(this, input); } -- cgit v1.2.3