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:
authorCampbell Barton <campbell@blender.org>2022-09-13 11:01:50 +0300
committerCampbell Barton <campbell@blender.org>2022-09-13 11:03:09 +0300
commitd92e14af1f73800c9afdce6ecc79cf0346c87bef (patch)
tree483bddaec0fffed3ed223974fae51b91c705553f
parentf78219c9a8b17afd0222920bb3afb992132cbb11 (diff)
Cleanup: typo in variable name
-rw-r--r--source/blender/nodes/intern/geometry_nodes_lazy_function.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/nodes/intern/geometry_nodes_lazy_function.cc b/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
index 442b17c6962..e4d476e6374 100644
--- a/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
+++ b/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
@@ -71,9 +71,9 @@ static void lazy_function_interface_from_node(const bNode &node,
Vector<lf::Output> &r_outputs)
{
const bool is_muted = node.is_muted();
- const bool supports_lazyness = node.typeinfo->geometry_node_execute_supports_laziness ||
+ const bool supports_laziness = node.typeinfo->geometry_node_execute_supports_laziness ||
node.is_group();
- const lf::ValueUsage input_usage = supports_lazyness ? lf::ValueUsage::Maybe :
+ const lf::ValueUsage input_usage = supports_laziness ? lf::ValueUsage::Maybe :
lf::ValueUsage::Used;
for (const bNodeSocket *socket : node.input_sockets()) {
if (!socket->is_available()) {