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-09-22 07:48:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-22 07:54:01 +0300
commit4d66cbd140b1648b79df0df695046cb718797b70 (patch)
tree945b1093ba250ad57611f44bda7ca0b8a31a0211 /intern/cycles/integrator/denoiser_oidn.cpp
parent77061a5621015dfd0c9f89fd21cb23d706d0cec8 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'intern/cycles/integrator/denoiser_oidn.cpp')
-rw-r--r--intern/cycles/integrator/denoiser_oidn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/integrator/denoiser_oidn.cpp b/intern/cycles/integrator/denoiser_oidn.cpp
index 1b5a012ec87..7fc2b2b1892 100644
--- a/intern/cycles/integrator/denoiser_oidn.cpp
+++ b/intern/cycles/integrator/denoiser_oidn.cpp
@@ -93,7 +93,7 @@ class OIDNPass {
* Is required for albedo and normal passes. The color pass OIDN will perform auto-exposure, so
* scaling is not needed for the color pass unless adaptive sampling is used.
*
- * NOTE: Do not scale the outout pass, as that requires to be a pointer in the original buffer.
+ * NOTE: Do not scale the output pass, as that requires to be a pointer in the original buffer.
* All the scaling on the output needed for integration with adaptive sampling will happen
* outside of generic pass handling. */
bool need_scale = false;
@@ -479,7 +479,7 @@ class OIDNDenoiseContext {
}
if (num_samples_ == 1) {
- /* If the avoid scaling if there is only one sample, to save up time (so we dont divide
+ /* If the avoid scaling if there is only one sample, to save up time (so we don't divide
* buffer by 1). */
return false;
}