replaced custom PI by OpenCL M_PI constant

This commit is contained in:
Ilya Lavrenov 2013-11-11 00:53:26 +04:00
parent 296f76a135
commit 5beb887247
2 changed files with 14 additions and 10 deletions

View File

@ -45,16 +45,16 @@
// //
#if defined (DOUBLE_SUPPORT) #if defined (DOUBLE_SUPPORT)
#ifdef cl_khr_fp64 #ifdef cl_amd_fp64
#pragma OPENCL EXTENSION cl_khr_fp64:enable
#elif defined (cl_amd_fp64)
#pragma OPENCL EXTENSION cl_amd_fp64:enable #pragma OPENCL EXTENSION cl_amd_fp64:enable
#elif defined (cl_khr_fp64)
#pragma OPENCL EXTENSION cl_khr_fp64:enable
#endif #endif
#define CV_PI 3.1415926535897932384626433832795 #define CV_PI M_PI
#define CV_2PI 2*CV_PI #define CV_2PI (2 * CV_PI)
#else #else
#define CV_PI 3.1415926535897932384626433832795f #define CV_PI M_PI_F
#define CV_2PI 2*CV_PI #define CV_2PI (2 * CV_PI)
#endif #endif
/**************************************phase inradians**************************************/ /**************************************phase inradians**************************************/

View File

@ -44,10 +44,14 @@
//M*/ //M*/
#ifdef DOUBLE_SUPPORT #ifdef DOUBLE_SUPPORT
#ifdef cl_amd_fp64
#pragma OPENCL EXTENSION cl_amd_fp64:enable
#elif defined (cl_khr_fp64)
#pragma OPENCL EXTENSION cl_khr_fp64:enable #pragma OPENCL EXTENSION cl_khr_fp64:enable
#define CV_PI 3.1415926535897932384626433832795 #endif
#define CV_PI M_PI
#else #else
#define CV_PI 3.1415926535897932384626433832795f #define CV_PI M_PI_F
#endif #endif
///////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////