flightlessmango / MangoHud

A Vulkan and OpenGL overlay for monitoring FPS, temperatures, CPU/GPU load and more. Discord: https://discordapp.com/invite/Gj5YmBb
MIT License
6.39k stars 282 forks source link

What's the way to display frametime graph with legacy_layout=0? #1407

Closed shmerl closed 1 month ago

shmerl commented 1 month ago

When using legacy_layout=0, you need to explicitly configure all elements. How can one display frametime graph that's shown by default when used without legacy_layout=0? Documentation doesn't mention any method.

flightlessmango commented 1 month ago

frame_timing is what you're looking for

shmerl commented 1 month ago

Ah, got it. Thanks. It would be neat to add it to the table in the readme since it's one of the major ones.

shmerl commented 1 month ago

And unrealted, but is there some way to turn some metric into a graph instead of a number? I've seen something like that in the past but not sure if that's a removed or still existing feature.

shmerl commented 1 month ago

I think I figured it out. I need to add these type of values inside my MANGOHUD_CONFIG variable:

...,graphs=cpu_load,graphs=gpu_load,...

It's probably good to document that too, it's very obscure otherwise.