Merge pull request #1 from nicklavoie/codex/add-gpu-vram-usage-to-detail-view

PerformanceOverlay: show GPU VRAM in Detail overlay top line
This commit is contained in:
nicklavoie 2026-02-21 22:31:10 -05:00 committed by GitHub
commit f343231a05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,7 +131,9 @@ namespace PerformanceOverlay
Nested =
{
new Entry("<C4><A3>{GPU_%}<A><A1><S1> %<S><A>"),
new Entry("<C4><A4>{GPU_W}<A><A1><S1> W<S><A>"),
new Entry("<C4><A4>{GPU_W}<A><A1><S1> W<S><A>") { Include = { OverlayMode.Minimal } },
new Entry("<C4><A4>{GPU_MB}<A><A1><S1> MB<S><A>") { IgnoreMissing = true, Include = { OverlayMode.Detail } },
new Entry("<C4><A4>{GPU_MHZ}<A><A1><S1> MHz<S><A>") { IgnoreMissing = true, Include = { OverlayMode.Detail } },
new Entry("<C4><A4>{GPU_T}<A><A1><S1> C<S><A>") { IgnoreMissing = true, Include = { OverlayMode.Detail } }
}
},
@ -141,20 +143,16 @@ namespace PerformanceOverlay
Nested =
{
new Entry("<C4><A3>{CPU_%}<A><A1><S1> %<S><A>"),
new Entry("<C4><A4>{CPU_W}<A><A1><S1> W<S><A>"),
new Entry("<C4><A4>{CPU_T}<A><A1><S1> C<S><A>") { IgnoreMissing = true, Include = { OverlayMode.Detail } }
new Entry("<C4><A4>{CPU_W}<A><A1><S1> W<S><A>") { Include = { OverlayMode.Minimal } },
new Entry("<C4><A4>{CPU_T}<A><A1><S1> C<S><A>") { IgnoreMissing = true, Include = { OverlayMode.Detail } },
new Entry("<C4><A5>{MEM_GB}<A><A1><S1> GiB<S><A>") { Include = { OverlayMode.Detail } }
}
},
new Entry
{
Text = "<C1>RAM<C>",
Nested = { new Entry("<C4><A5>{MEM_GB}<A><A1><S1> GiB<S><A>") }
},
new Entry
{
Text = "<C1>FAN<C>",
Nested = { new Entry("<C4><A5>{FAN_RPM}<A><A1><S1> RPM<S><A>") },
Include = { OverlayMode.Detail }
Nested = { new Entry("<C4><A5>{MEM_GB}<A><A1><S1> GiB<S><A>") },
Include = { OverlayMode.Minimal }
},
new Entry
{