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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-18 02:51:46 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-18 02:53:03 +0300
commit1dcd7db73d13443c59dd824abd9cacbf6bc88997 (patch)
tree444b31fa05c90248653eb404a2d506bd4c08b49d /intern/cycles/kernel/geom
parent9e717c0495a3f9b71d3895d35df1e15518b6ca2c (diff)
Code cleanup: remove some more unused code after recent CUDA changes.
Diffstat (limited to 'intern/cycles/kernel/geom')
-rw-r--r--intern/cycles/kernel/geom/geom_curve_intersect.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/intern/cycles/kernel/geom/geom_curve_intersect.h b/intern/cycles/kernel/geom/geom_curve_intersect.h
index 7f24aea5d28..faf3e3cdf2b 100644
--- a/intern/cycles/kernel/geom/geom_curve_intersect.h
+++ b/intern/cycles/kernel/geom/geom_curve_intersect.h
@@ -500,17 +500,17 @@ ccl_device_forceinline bool cardinal_curve_intersect(
}
ccl_device_forceinline bool curve_intersect(KernelGlobals *kg,
- Intersection *isect,
- float3 P,
- float3 direction,
- uint visibility,
- int object,
- int curveAddr,
- float time,
- int type,
- uint *lcg_state,
- float difl,
- float extmax)
+ Intersection *isect,
+ float3 P,
+ float3 direction,
+ uint visibility,
+ int object,
+ int curveAddr,
+ float time,
+ int type,
+ uint *lcg_state,
+ float difl,
+ float extmax)
{
/* define few macros to minimize code duplication for SSE */
#ifndef __KERNEL_SSE2__