/**********************************************************************************1* Copyright (c) 2008-2019 The Khronos Group Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and/or associated documentation files (the5* "Materials"), to deal in the Materials without restriction, including6* without limitation the rights to use, copy, modify, merge, publish,7* distribute, sublicense, and/or sell copies of the Materials, and to8* permit persons to whom the Materials are furnished to do so, subject to9* the following conditions:10*11* The above copyright notice and this permission notice shall be included12* in all copies or substantial portions of the Materials.13*14* MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS15* KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS16* SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT17* https://www.khronos.org/registry/18*19* THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,20* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF21* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.22* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY23* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,24* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE25* MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.26**********************************************************************************/2728#ifndef __OPENCL_CL_GL_EXT_H29#define __OPENCL_CL_GL_EXT_H3031#ifdef __cplusplus32extern "C" {33#endif3435#include <CL/cl_gl.h>3637/*38* cl_khr_gl_event extension39*/40#define CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR 0x200D4142extern CL_API_ENTRY cl_event CL_API_CALL43clCreateEventFromGLsyncKHR(cl_context context,44cl_GLsync cl_GLsync,45cl_int * errcode_ret) CL_EXT_SUFFIX__VERSION_1_1;4647#ifdef __cplusplus48}49#endif5051#endif /* __OPENCL_CL_GL_EXT_H */525354