Cleanup: clang-format

This commit is contained in:
Brecht Van Lommel 2019-08-27 12:18:08 +02:00
parent af71be23c2
commit a7609598fa
1 changed files with 2 additions and 1 deletions

View File

@ -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);