diff --git a/examples/animated_mesh.rs b/examples/animated_mesh.rs index 22e2cd9..5d75d1c 100644 --- a/examples/animated_mesh.rs +++ b/examples/animated_mesh.rs @@ -20,7 +20,7 @@ fn main() { fn sketch() -> error::Result<()> { let mut glfw_ctx = GlfwContext::new(600, 600)?; - init()?; + init(Config::default())?; let width = 600; let height = 600; diff --git a/examples/box.rs b/examples/box.rs index 82d9ebb..acc542e 100644 --- a/examples/box.rs +++ b/examples/box.rs @@ -19,7 +19,7 @@ fn main() { fn sketch() -> error::Result<()> { let mut glfw_ctx = GlfwContext::new(400, 400)?; - init()?; + init(Config::default())?; let width = 400; let height = 400; diff --git a/examples/custom_attribute.rs b/examples/custom_attribute.rs index c71b0d0..a900267 100644 --- a/examples/custom_attribute.rs +++ b/examples/custom_attribute.rs @@ -20,7 +20,7 @@ fn main() { fn sketch() -> error::Result<()> { let mut glfw_ctx = GlfwContext::new(600, 600)?; - init()?; + init(Config::default())?; let width = 600; let height = 600;