summaryrefslogtreecommitdiffstats
path: root/build.rs
blob: c63f7964d8fa115d4c7516f4b08db7540b859b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate gl_generator;

use gl_generator::{Registry, Api, Profile, Fallbacks, GlobalGenerator};
use std::env;
use std::fs::File;
use std::path::Path;

fn main() {
    let dest = env::var("OUT_DIR").unwrap();
    let mut file = File::create(&Path::new(&dest).join("gl_bindings.rs")).unwrap();

    Registry::new(Api::Gl, (4, 5), Profile::Core, Fallbacks::All, [
            "GL_ARB_blend_func_extended"
        ])
        .write_bindings(GlobalGenerator, &mut file)
        .unwrap();
}