15 lines
255 B
C
15 lines
255 B
C
|
|
#ifndef CL_H
|
|
#define CL_H
|
|
|
|
#define CL_USE_DEPRECATED_OPENCL_1_1_APIS
|
|
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS
|
|
#define CL_USE_DEPRECATED_OPENCL_2_0_APIS
|
|
|
|
#ifdef __APPLE__
|
|
#include "OpenCL/opencl.h"
|
|
#else
|
|
#include "CL/opencl.h"
|
|
#endif
|
|
|
|
#endif /* CL_H */ |