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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-27 13:18:08 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-27 13:18:28 +0300
commita7609598fae6a2ad9a2ad431660c589ddd29d304 (patch)
tree3c73794f3486a91bc24cd67586768548af0adf23 /source/blender/compositor
parentaf71be23c23bf2a6bf759b7ed42e47c53879eb8e (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_DenoiseOperation.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_DenoiseOperation.cpp b/source/blender/compositor/operations/COM_DenoiseOperation.cpp
index 39ebc63ed20..233840aa5a8 100644
--- a/source/blender/compositor/operations/COM_DenoiseOperation.cpp
+++ b/source/blender/compositor/operations/COM_DenoiseOperation.cpp
@@ -142,7 +142,8 @@ void DenoiseOperation::generateDenoise(float *data,
filter.commit();
/* Since it's memory intensive, it's better to run only one instance of OIDN at a time.
- * OpenImageDenoise is multithreaded internally and should use all available cores nonetheless. */
+ * OpenImageDenoise is multithreaded internally and should use all available cores nonetheless.
+ */
BLI_mutex_lock(&oidn_lock);
filter.execute();
BLI_mutex_unlock(&oidn_lock);