From e0a49c20e8bc515396f0215824861f269bf4efb0 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Sat, 31 Dec 2022 14:12:26 +0100 Subject: [PATCH] Pass down arguments to glTF child nodes Refs #824 --- base/VulkanglTFModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/VulkanglTFModel.cpp b/base/VulkanglTFModel.cpp index 996b7c28..93f18d4d 100644 --- a/base/VulkanglTFModel.cpp +++ b/base/VulkanglTFModel.cpp @@ -1437,7 +1437,7 @@ void vkglTF::Model::drawNode(Node *node, VkCommandBuffer commandBuffer, uint32_t } } for (auto& child : node->children) { - drawNode(child, commandBuffer, renderFlags); + drawNode(child, commandBuffer, renderFlags, pipelineLayout, bindImageSet); } }