Cycles / CUDA:

* Remove double declaration of cosf.
This commit is contained in:
Thomas Dinges 2012-05-28 23:51:06 +00:00
parent 53082c410d
commit a7c68afc72

@ -67,7 +67,6 @@ typedef texture<uchar4, 2, cudaReadModeNormalizedFloat> texture_image_uchar4;
#define cosf(x) __cosf(((float)x))
#define sinf(x) __sinf(((float)x))
#define powf(x, y) __powf(((float)x), ((float)y))
#define cosf(x) __cosf(((float)x))
#define tanf(x) __tanf(((float)x))
#define logf(x) __logf(((float)x))
#define expf(x) __expf(((float)x))