diff options
author | 2023-02-23 09:31:48 -0800 | |
---|---|---|
committer | 2023-02-23 09:31:48 -0800 | |
commit | 07a7681dba5a9a40627689246d2a84414dfc48d3 (patch) | |
tree | 116e1e51d5d66e0a02cc474fbbdae4205f03090d /wgpu/src/settings.rs | |
parent | 666f3cd143047e49a010f0c97eabc7136f92aa35 (diff) | |
download | iced-07a7681dba5a9a40627689246d2a84414dfc48d3.tar.gz iced-07a7681dba5a9a40627689246d2a84414dfc48d3.tar.bz2 iced-07a7681dba5a9a40627689246d2a84414dfc48d3.zip |
Remove logging large bytes arrays
Diffstat (limited to 'wgpu/src/settings.rs')
-rw-r--r-- | wgpu/src/settings.rs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/wgpu/src/settings.rs b/wgpu/src/settings.rs index fd3b990a..5ef79499 100644 --- a/wgpu/src/settings.rs +++ b/wgpu/src/settings.rs @@ -1,10 +1,12 @@ //! Configure a renderer. +use std::fmt; + pub use crate::Antialiasing; /// The settings of a [`Backend`]. /// /// [`Backend`]: crate::Backend -#[derive(Debug, Clone, Copy, PartialEq)] +#[derive(Clone, Copy, PartialEq)] pub struct Settings { /// The present mode of the [`Backend`]. /// @@ -36,6 +38,20 @@ pub struct Settings { pub antialiasing: Option<Antialiasing>, } +impl fmt::Debug for Settings { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + f.debug_struct("Settings") + .field("present_mode", &self.present_mode) + .field("internal_backend", &self.internal_backend) + // Instead of printing the font bytes, we simply show a `bool` indicating if using a default font or not. + .field("default_font", &self.default_font.is_some()) + .field("default_text_size", &self.default_text_size) + .field("text_multithreading", &self.text_multithreading) + .field("antialiasing", &self.antialiasing) + .finish() + } +} + impl Settings { /// Creates new [`Settings`] using environment configuration. /// |