Fixed the newly defined math function to actually work with cuda
This commit is contained in:
parent
ec31f3f897
commit
52a47ed302
|
|
@ -53,10 +53,4 @@ __device__ float clamp(float value, float min, float max) {
|
|||
// Normalize a float to the range [0, 1]
|
||||
__device__ float normalize(float value, float min, float max) {
|
||||
return (value - min) / (max - min);
|
||||
}
|
||||
|
||||
// Interpolate between two values
|
||||
template <typename T>
|
||||
__device__ T interpolate(T start, T end, float t) {
|
||||
return start + t * (end - start);
|
||||
}
|
||||
}
|
||||
|
|
@ -10,8 +10,12 @@ __device__ unsigned int packUnorm4x8(float r, float g, float b, float a);
|
|||
__device__ float clamp(float value, float min, float max);
|
||||
__device__ float normalize(float value, float min, float max);
|
||||
|
||||
// Interpolate between two values
|
||||
template <typename T>
|
||||
__device__ float interpolate(T start, T end, float t);
|
||||
__device__ T interpolate(T start, T end, float t) {
|
||||
return start + t * (end - start);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif // MAT_H
|
||||
|
|
|
|||
Loading…
Reference in New Issue