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_math_float2.h')
-rw-r--r--intern/cycles/util/util_math_float2.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/intern/cycles/util/util_math_float2.h b/intern/cycles/util/util_math_float2.h
index bf21430af3c..17f6f3c9382 100644
--- a/intern/cycles/util/util_math_float2.h
+++ b/intern/cycles/util/util_math_float2.h
@@ -72,6 +72,16 @@ ccl_device_inline float2 safe_divide_float2_float(const float2 a, const float b)
* Definition.
*/
+ccl_device_inline float2 zero_float2()
+{
+ return make_float2(0.0f, 0.0f);
+}
+
+ccl_device_inline float2 one_float2()
+{
+ return make_float2(1.0f, 1.0f);
+}
+
#ifndef __KERNEL_OPENCL__
ccl_device_inline float2 operator-(const float2 &a)
{
@@ -256,7 +266,7 @@ ccl_device_inline float2 floor(const float2 &a)
ccl_device_inline float2 safe_divide_float2_float(const float2 a, const float b)
{
- return (b != 0.0f) ? a / b : make_float2(0.0f, 0.0f);
+ return (b != 0.0f) ? a / b : zero_float2();
}
CCL_NAMESPACE_END