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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-01-30 15:56:47 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-01-30 23:49:41 +0300
commitdc1043dda0552af72396fec15dccd9d7eefee803 (patch)
treebf880778f551f7dc0565472bc577d7bf9e7be156 /SConstruct
parent3dbfebc42caada8bb969a936cfb7a9f8ad730ca6 (diff)
Cycles: Add fast math function module
It is based on fmath.h from OIIO and could be used to give some speedup in areas where absolute accuracy is not so critical.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct1
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 9e5d434da98..7de9f2c243c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1010,6 +1010,7 @@ if env['OURPLATFORM']!='darwin':
source.append('intern/cycles/util/util_color.h')
source.append('intern/cycles/util/util_half.h')
source.append('intern/cycles/util/util_math.h')
+ source.append('intern/cycles/util/util_math_fast.h')
source.append('intern/cycles/util/util_transform.h')
source.append('intern/cycles/util/util_types.h')
scriptinstall.append(env.Install(dir=dir,source=source))