diff options
author | 2022-03-10 03:02:17 -0300 | |
---|---|---|
committer | 2022-04-26 18:57:00 -0300 | |
commit | 53538b65b1c557015c2900fc28b8916cf719a10b (patch) | |
tree | d0e9b72d60275d3bd3654c3f4dbbc870717d5790 /winit/src/application.rs | |
parent | c8ed318e17c8a7673e4260e5d4e12c44c9faa987 (diff) | |
download | iced-53538b65b1c557015c2900fc28b8916cf719a10b.tar.gz iced-53538b65b1c557015c2900fc28b8916cf719a10b.tar.bz2 iced-53538b65b1c557015c2900fc28b8916cf719a10b.zip |
Add `system_information` example
Diffstat (limited to '')
-rw-r--r-- | winit/src/application.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index b2f9be29..f5a58f2f 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -589,8 +589,6 @@ pub fn run_command<Message: 'static + std::fmt::Debug + Send, E: Executor>( system_kernel: system.kernel_version(), system_version: system.long_os_version(), cpu_brand: cpu.brand().into(), - cpu_vendor: cpu.vendor_id().into(), - cpu_name: cpu.name().into(), cpu_cores: system.physical_core_count(), memory_total: system.total_memory(), }; |