From 2ff393fe623d10f2ea89262013ba66e228cc0c94 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Wed, 22 Oct 2014 08:04:13 +0200 Subject: Update for rustc and gl-rs --- examples/support/mod.rs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/support/mod.rs b/examples/support/mod.rs index f27c4e7..12aa68c 100644 --- a/examples/support/mod.rs +++ b/examples/support/mod.rs @@ -7,13 +7,23 @@ use glutin; #[cfg(not(target_os = "android"))] mod gl { - generate_gl_bindings!("gl", "core", "1.1", "struct") + generate_gl_bindings! { + api: "gl", + profile: "core", + version: "1.1", + generator: "struct" + } } #[cfg(target_os = "android")] mod gl { pub use self::Gles1 as Gl; - generate_gl_bindings!("gles1", "core", "1.1", "struct") + generate_gl_bindings! { + api: "gles1", + profile: "core", + version: "1.1", + generator: "struct" + } } pub struct Context { -- cgit v1.2.3