1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pub const VERTEX_GLSL_120: &'static [u8] = include_bytes!("120.glslv");
pub const VERTEX_GLSL_150_CORE: &'static [u8] = include_bytes!("150_core.glslv");
pub const FRAGMENT_GLSL_120: &'static [u8] = include_bytes!("120.glslf");
pub const FRAGMENT_GLSL_150_CORE: &'static [u8] = include_bytes!("150_core.glslf");
pub const VERTEX_GLSL_120_WEBGL: &'static [u8] = include_bytes!("120_webgl.glslv");
pub const VERTEX_GLSL_150_CORE_WEBGL: &'static [u8] = include_bytes!("150_core_webgl.glslv");
pub const FRAGMENT_GLSL_120_WEBGL: &'static [u8] = include_bytes!("120_webgl.glslf");
pub const FRAGMENT_GLSL_150_CORE_WEBGL: &'static [u8] = include_bytes!("150_core_webgl.glslf");