diff --git a/examples/animated_mesh.rs b/examples/animated_mesh.rs index 22e2cd94..5d75d1c8 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 82d9ebbb..acc542ef 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 c71b0d04..a9002674 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;