fixed bug with cl_long size on Win32 (thanks to Aaron Kunze)
This commit is contained in:
parent
677c7f27cb
commit
ae8b2cbd68
@ -114,8 +114,13 @@ typedef struct _cl_sampler * cl_sampler;
|
|||||||
|
|
||||||
typedef int cl_int;
|
typedef int cl_int;
|
||||||
typedef unsigned cl_uint;
|
typedef unsigned cl_uint;
|
||||||
typedef long cl_long;
|
#if defined (_WIN32) && defined(_MSC_VER)
|
||||||
typedef unsigned long cl_ulong;
|
typedef __int64 cl_long;
|
||||||
|
typedef unsigned __int64 cl_ulong;
|
||||||
|
#else
|
||||||
|
typedef long cl_long;
|
||||||
|
typedef unsigned long cl_ulong;
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef cl_uint cl_bool; /* WARNING! Unlike cl_ types in cl_platform.h, cl_bool is not guaranteed to be the same size as the bool in kernels. */
|
typedef cl_uint cl_bool; /* WARNING! Unlike cl_ types in cl_platform.h, cl_bool is not guaranteed to be the same size as the bool in kernels. */
|
||||||
typedef cl_ulong cl_bitfield;
|
typedef cl_ulong cl_bitfield;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user