From f7ef1f61e204f7059ed6c98d97723090ae93c17f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moon=20Dav=C3=A9?= Date: Sat, 27 Dec 2025 14:09:57 -0800 Subject: [PATCH] Pass `Config::default()` to initializers in examples --- examples/animated_mesh.rs | 2 +- examples/box.rs | 2 +- examples/custom_attribute.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;