GNU Radio's FOSPHOR Package
cl_platform.h
Go to the documentation of this file.
1/*
2 * cl_platform.h
3 *
4 * Wrapper to select proper OpenCL headers for various platforms
5 *
6 * Copyright (C) 2013-2014 Sylvain Munaut
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22/*! \file cl_platform.h
23 * \brief Wrapper to select proper OpenCL headers for various platforms
24 */
25
26#if !defined(_WIN32) && (defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__))
27# define _WIN32
28#endif
29
30#define CL_TARGET_OPENCL_VERSION 120
31
32#if defined(__APPLE__) || defined(MACOSX)
33# include <OpenCL/cl.h>
34# include <OpenCL/cl_ext.h>
35# include <OpenCL/cl_gl.h>
36# include <OpenCL/cl_gl_ext.h>
37#else
38# define CL_USE_DEPRECATED_OPENCL_1_1_APIS
39# define CL_USE_DEPRECATED_OPENCL_1_2_APIS
40# include <CL/cl.h>
41# include <CL/cl_ext.h>
42# include <CL/cl_gl.h>
43#endif