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 <ideasman42@gmail.com>2021-12-09 13:16:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-09 13:17:16 +0300
commit7f4878ac7f5612082a1235cf6083dc490cbfc212 (patch)
tree2fb612ec9cfa6a0f5cc4466860575aa536137b6b /source/blender/functions/intern/multi_function.cc
parentb8bad3549dcef0b761708ef9cc1f814ebedb3106 (diff)
Cleanup: move public doc-strings into headers for 'functions'
Ref T92709
Diffstat (limited to 'source/blender/functions/intern/multi_function.cc')
-rw-r--r--source/blender/functions/intern/multi_function.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/functions/intern/multi_function.cc b/source/blender/functions/intern/multi_function.cc
index 3e5539d4248..837ccc4f4fb 100644
--- a/source/blender/functions/intern/multi_function.cc
+++ b/source/blender/functions/intern/multi_function.cc
@@ -66,12 +66,6 @@ static int64_t compute_grain_size(const ExecutionHints &hints, const IndexMask m
return grain_size;
}
-/**
- * The result is the same as using #call directly but this method has some additional features.
- * - Automatic multi-threading when possible and appropriate.
- * - Automatic index mask offsetting to avoid large temporary intermediate arrays that are mostly
- * unused.
- */
void MultiFunction::call_auto(IndexMask mask, MFParams params, MFContext context) const
{
if (mask.is_empty()) {