1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crates contains the sources of the official OpenGL repository.

/// Content of the official `gl.xml` file.
pub static GL_XML: &'static [u8] = include_bytes!("../api/gl.xml");

/// Content of the official `egl.xml` file.
pub static EGL_XML: &'static [u8] = include_bytes!("../api/egl.xml");

/// Content of the official `wgl.xml` file.
pub static WGL_XML: &'static [u8] = include_bytes!("../api/wgl.xml");

/// Content of the official `glx.xml` file.
pub static GLX_XML: &'static [u8] = include_bytes!("../api/glx.xml");