aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index 166c223..f49b47f 100644
--- a/build.rs
+++ b/build.rs
@@ -50,7 +50,15 @@ fn main() {
khronos_api::EGL_XML, vec![],
"1.5", "core", &mut file).unwrap();
}
-
+
+ if target.contains("darwin") {
+ let mut file = File::create(&dest.join("gl_bindings.rs")).unwrap();
+ gl_generator::generate_bindings(gl_generator::GlobalGenerator,
+ gl_generator::registry::Ns::Gl,
+ khronos_api::GL_XML,
+ vec!["GL_EXT_framebuffer_object".to_string()],
+ "3.2", "core", &mut file).unwrap();
+ }
// TODO: only build the bindings below if we run tests/examples