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:
Diffstat (limited to 'intern/cycles/util/util_half.h')
-rw-r--r--intern/cycles/util/util_half.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_half.h b/intern/cycles/util/util_half.h
index 8de62893ba8..3bac7008905 100644
--- a/intern/cycles/util/util_half.h
+++ b/intern/cycles/util/util_half.h
@@ -141,7 +141,7 @@ ccl_device_inline float4 half4_to_float4(half4 h)
ccl_device_inline half float_to_half(float f)
{
const uint u = __float_as_uint(f);
- /* Sign bit, shifted to it's position. */
+ /* Sign bit, shifted to its position. */
uint sign_bit = u & 0x80000000;
sign_bit >>= 16;
/* Exponent. */