cl_sys/platform_h.rs
1//! Types from platform.h which are not imported elsewhere.
2
3#![allow(non_camel_case_types)]
4
5// From:
6// https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl12/cl_platform.h
7//
8// typedef unsigned int cl_GLuint;
9// typedef int cl_GLint;
10// typedef unsigned int cl_GLenum;
11
12// pub type cl_GLuint = u32;
13// pub type cl_GLint = i32;
14// pub type cl_GLenum = u32;
15
16pub type cl_GLuint = u32;
17pub type cl_GLint = i32;
18pub type cl_GLenum = u32;