aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/CL/cl_kernels/fft.cl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CL/cl_kernels/fft.cl b/src/core/CL/cl_kernels/fft.cl
index b257451652..51763a620a 100644
--- a/src/core/CL/cl_kernels/fft.cl
+++ b/src/core/CL/cl_kernels/fft.cl
@@ -33,8 +33,8 @@
{ \
VEC_DATA_TYPE(DATA_TYPE, 2) \
w, tmp; \
- w.x = native_cos(phi); \
- w.y = native_sin(phi); \
+ w.x = cos(phi); \
+ w.y = sin(phi); \
tmp.x = (w.x * input.x) - (w.y * input.y); \
tmp.y = (w.x * input.y) + (w.y * input.x); \
input = tmp; \