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>2018-01-19 07:34:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-19 07:34:54 +0300
commit7a24e0d175827824d139f7627de2a5af34d687fb (patch)
tree29d69f4dc31484ed18b35e41c332fea7eb12894b /intern/cycles/kernel/kernel_path_state.h
parentabb3a86e10fee210cdb47ceb15e1ad9cf1790209 (diff)
Cleanup: typos
Diffstat (limited to 'intern/cycles/kernel/kernel_path_state.h')
-rw-r--r--intern/cycles/kernel/kernel_path_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/kernel_path_state.h b/intern/cycles/kernel/kernel_path_state.h
index 505eed117e0..2ae866bb051 100644
--- a/intern/cycles/kernel/kernel_path_state.h
+++ b/intern/cycles/kernel/kernel_path_state.h
@@ -202,7 +202,7 @@ ccl_device_inline float path_state_continuation_probability(KernelGlobals *kg,
#endif
}
- /* Probalistic termination: use sqrt() to roughly match typical view
+ /* Probabilistic termination: use sqrt() to roughly match typical view
* transform and do path termination a bit later on average. */
return min(sqrtf(max3(fabs(throughput)) * state->branch_factor), 1.0f);
}