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:
authorJeroen Bakker <jeroen@blender.org>2021-03-19 16:16:16 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-19 19:11:47 +0300
commitb5f70d92c25693e05c8ecbd79c76e5bb35a7ceb5 (patch)
treea59f2ac2d3dc74671984db1dda4b3d39252790f0 /source/blender/compositor/COM_compositor.h
parent9c2d4ffbc1d7b25acf865054441b204db04ce1dd (diff)
Cleanup: enum class ChunkOrdering.
Diffstat (limited to 'source/blender/compositor/COM_compositor.h')
-rw-r--r--source/blender/compositor/COM_compositor.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/compositor/COM_compositor.h b/source/blender/compositor/COM_compositor.h
index 4aae5471858..7c230c8379a 100644
--- a/source/blender/compositor/COM_compositor.h
+++ b/source/blender/compositor/COM_compositor.h
@@ -102,13 +102,13 @@ extern "C" {
* ExecutionGroups that have no viewer-node,
* will use a default one.
* There are several possible chunk orders
- * - [@ref OrderOfChunks.COM_TO_CENTER_OUT]:
+ * - [@ref ChunkOrdering.CenterOut]:
* Start calculating from a configurable point and order by nearest chunk.
- * - [@ref OrderOfChunks.COM_TO_RANDOM]:
+ * - [@ref ChunkOrdering.Random]:
* Randomize all chunks.
- * - [@ref OrderOfChunks.COM_TO_TOP_DOWN]:
+ * - [@ref ChunkOrdering.TopDown]:
* Start calculation from the bottom to the top of the image.
- * - [@ref OrderOfChunks.COM_TO_RULE_OF_THIRDS]:
+ * - [@ref ChunkOrdering.RuleOfThirds]:
* Experimental order based on 9 hot-spots in the image.
*
* When the chunk-order is determined, the first few chunks will be checked if they can be scheduled.
@@ -122,7 +122,7 @@ extern "C" {
*
* \see ExecutionGroup.execute
* \see ViewerOperation.getChunkOrder
- * \see OrderOfChunks
+ * \see ChunkOrdering
*
* \section interest Area of interest
* An ExecutionGroup can have dependencies to other ExecutionGroup's.