diff options
-rw-r--r-- | native/src/system/information.rs | 4 |
1 files changed, 4 insertions, 0 deletions
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<usize>, /// 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, } |