From 5356bb9bdb0074683722be194f36169836824af8 Mon Sep 17 00:00:00 2001 From: Richard Date: Thu, 17 Mar 2022 00:58:28 -0300 Subject: Add graphics information to `system::Information` --- native/src/system/information.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'native') diff --git a/native/src/system/information.rs b/native/src/system/information.rs index e614f11e..bf0b100c 100644 --- a/native/src/system/information.rs +++ b/native/src/system/information.rs @@ -13,4 +13,8 @@ pub struct Information { pub cpu_cores: Option, /// Contains the total RAM size in KB. pub memory_total: u64, + /// Contains the graphics backend. + pub graphics_backend: String, + /// Contains the graphics adapter. + pub graphics_adapter: String, } -- cgit