[graphics/krita] libs/image: Add some documentation for UpdateFrameJobsNonRecursive.
Wolthera van Hövell <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 05c6eb3f7607c35df4ea1d5b270da08c748c6450 by Wolthera van Hövell, on behalf of Wolthera van Hövell tot Westerflier.
Committed on 07/08/2026 at 09:24.
Pushed by woltherav into branch 'master'.
Add some documentation for UpdateFrameJobsNonRecursive.
M +5 -0 libs/image/kis_layer_utils.h
https://invent.kde.org/graphics/krita/-/commit/05c6eb3f7607c35df4ea1d5b270da08c748c6450
diff --git a/libs/image/kis_layer_utils.h b/libs/image/kis_layer_utils.h
index 37163074e3a..7148fc2db2d 100644
--- a/libs/image/kis_layer_utils.h
+++ b/libs/image/kis_layer_utils.h
@@ -94,6 +94,11 @@ namespace KisLayerUtils
typedef QMap<int, QSet<KisNodeSP> > FrameJobs;
void updateFrameJobs(FrameJobs *jobs, KisNodeSP node);
void updateFrameJobsRecursive(FrameJobs *jobs, KisNodeSP rootNode);
+ /**
+ * @brief updateFrameJobsNonRecursive
+ * updates the frame jobs non-recursively, that is, on the rootNode only.
+ * @param frameTimesRecursive -- whether to make the frame times themselves recursive, or to only use the frames on the root node.
+ */
void updateFrameJobsNonRecursive(FrameJobs *jobs, KisNodeSP rootNode, bool frameTimesRecursive = false);
/**