aboutsummaryrefslogtreecommitdiffstats
path: root/examples/support/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/support/mod.rs')
-rw-r--r--examples/support/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/support/mod.rs b/examples/support/mod.rs
index 1dddfc3..31ccf1d 100644
--- a/examples/support/mod.rs
+++ b/examples/support/mod.rs
@@ -1,7 +1,7 @@
#[phase(plugin)]
extern crate gl_generator;
-use gl_init;
+use glutin;
#[cfg(not(target_os = "android"))]
mod gl {
@@ -18,7 +18,7 @@ pub struct Context {
gl: gl::Gl
}
-pub fn load(window: &gl_init::Window) -> Context {
+pub fn load(window: &glutin::Window) -> Context {
let gl = gl::Gl::load_with(|symbol| window.get_proc_address(symbol));
let version = {