xref: /aosp_15_r20/external/ComputeLibrary/include/CL/opencl.h (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1*c217d954SCole Faust /*******************************************************************************
2*c217d954SCole Faust  * Copyright (c) 2008-2021 The Khronos Group Inc.
3*c217d954SCole Faust  *
4*c217d954SCole Faust  * Licensed under the Apache License, Version 2.0 (the "License");
5*c217d954SCole Faust  * you may not use this file except in compliance with the License.
6*c217d954SCole Faust  * You may obtain a copy of the License at
7*c217d954SCole Faust  *
8*c217d954SCole Faust  *    http://www.apache.org/licenses/LICENSE-2.0
9*c217d954SCole Faust  *
10*c217d954SCole Faust  * Unless required by applicable law or agreed to in writing, software
11*c217d954SCole Faust  * distributed under the License is distributed on an "AS IS" BASIS,
12*c217d954SCole Faust  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*c217d954SCole Faust  * See the License for the specific language governing permissions and
14*c217d954SCole Faust  * limitations under the License.
15*c217d954SCole Faust  ******************************************************************************/
16*c217d954SCole Faust 
17*c217d954SCole Faust #ifndef __OPENCL_H
18*c217d954SCole Faust #define __OPENCL_H
19*c217d954SCole Faust 
20*c217d954SCole Faust #ifdef __cplusplus
21*c217d954SCole Faust extern "C" {
22*c217d954SCole Faust #endif
23*c217d954SCole Faust 
24*c217d954SCole Faust #include <CL/cl.h>
25*c217d954SCole Faust #include <CL/cl_gl.h>
26*c217d954SCole Faust #include <CL/cl_ext.h>
27*c217d954SCole Faust 
28*c217d954SCole Faust #ifdef __cplusplus
29*c217d954SCole Faust }
30*c217d954SCole Faust #endif
31*c217d954SCole Faust 
32*c217d954SCole Faust #endif  /* __OPENCL_H   */
33