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>2020-03-03 14:06:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-03 14:23:10 +0300
commitce2dc6ef2bce1fdd038989e0a7841600daccfd49 (patch)
tree17e83416a6fe99827941bff0dc5d7c3e510e6e0c /source/blender/blenlib/intern/math_color_inline.c
parent582205c13449e41cc876d6df951c354e897419ea (diff)
Cleanup: formatting, spelling
Diffstat (limited to 'source/blender/blenlib/intern/math_color_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_color_inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_color_inline.c b/source/blender/blenlib/intern/math_color_inline.c
index 52ca229fe27..66fd2780cf8 100644
--- a/source/blender/blenlib/intern/math_color_inline.c
+++ b/source/blender/blenlib/intern/math_color_inline.c
@@ -323,7 +323,7 @@ MINLINE int compare_rgb_uchar(const unsigned char col_a[3],
MINLINE float dither_random_value(float s, float t)
{
/* Original code from https://www.shadertoy.com/view/4t2SDh */
- /* The nois reshaping technique does not work on CPU.
+ /* The noise reshaping technique does not work on CPU.
* We generate and merge two distribution instead */
/* Uniform noise in [0..1[ range */
float nrnd0 = sinf(s * 12.9898f + t * 78.233f) * 43758.5453f;