Merge pull request #2364 from alicevision/dev/nodeWithoutComputation

New InputNode for nodes without computation and support for all param types in output (and no more limited to File type)
This commit is contained in:
Fabien Castan 2024-06-06 00:01:43 +02:00 committed by GitHub
commit adbd6426ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 185 additions and 64 deletions

View file

@ -176,7 +176,7 @@ FocusScope {
}
// node must be computed or at least running
if (!node.isPartiallyFinished()) {
if (node.isComputable && !node.isPartiallyFinished()) {
return false
}
@ -302,7 +302,7 @@ FocusScope {
}
}
}
names.push("gallery")
if (!displayedNode || displayedNode.isComputable) names.push("gallery")
outputAttribute.names = names
root.source = getImageFile()