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