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 <campbell@blender.org>2022-04-22 01:16:37 +0300
committerCampbell Barton <campbell@blender.org>2022-04-22 03:11:48 +0300
commit2547c3c70ceef763ae9698b8dc76c12168a605d4 (patch)
treeeccc4cff0d39cb866a66ca0d432bdc2a3ec71a45 /source/blender/blenlib
parent179100c021269c278396c9a8039a0b75703c5f3a (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_color_mix.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_color_mix.hh b/source/blender/blenlib/BLI_color_mix.hh
index 6b0c2d914dd..f23d752b8d1 100644
--- a/source/blender/blenlib/BLI_color_mix.hh
+++ b/source/blender/blenlib/BLI_color_mix.hh
@@ -25,9 +25,9 @@ struct ByteTraits {
using BlendType = int;
inline static const uchar range = 255; /* Zero-based maximum value. */
- inline static const float frange = 255.0f; /* Convienent floating-point version of range. */
+ inline static const float frange = 255.0f; /* Convenient floating-point version of range. */
inline static const int cmpRange = 254;
- inline static const int expandedRange = 256; /* One-based maxium value. */
+ inline static const int expandedRange = 256; /* One-based maximum value. */
inline static const int bytes = 1;
inline static const float unit = 255.0f;