Skip to content

Commit

Permalink
disable debug callbacks by default to improve performance
Browse files Browse the repository at this point in the history
  • Loading branch information
coderedart committed Jan 2, 2024
1 parent a33ed64 commit 9fdec8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/egui_render_glow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "egui_render_glow"
description = "egui rendering backend using glow"
version = "0.6.3"
version = "0.6.4"
repository.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/egui_render_glow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl Default for GlowConfig {
fn default() -> Self {
Self {
webgl_config: Default::default(),
enable_debug: true,
enable_debug: false,
}
}
}
Expand Down

0 comments on commit 9fdec8f

Please sign in to comment.