mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 06:57:10 +02:00
Render Profiler in GUI (#854)
* move profiler output to gui * addressed commits, rebased * removed whitespaces
This commit is contained in:
parent
db9f8f999f
commit
f2b9a9c2b0
41 changed files with 1358 additions and 1639 deletions
28
Ryujinx.Debugger/ProfilerConfig.jsonc
Normal file
28
Ryujinx.Debugger/ProfilerConfig.jsonc
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
// Enable profiling (Only available on a profiling enabled builds)
|
||||
"enabled": true,
|
||||
|
||||
// Set profile file dump location, if blank file dumping disabled. (e.g. `ProfileDump.csv`)
|
||||
"dump_path": "",
|
||||
|
||||
// Update rate for profiler UI, in hertz. -1 updates every time a frame is issued
|
||||
"update_rate": 4.0,
|
||||
|
||||
// Set how long to keep profiling data in seconds, reduce if profiling is taking too much RAM
|
||||
"history": 5.0,
|
||||
|
||||
// Set the maximum profiling level. Higher values may cause a heavy load on your system but will allow you to profile in more detail
|
||||
"max_level": 0,
|
||||
|
||||
// Sets the maximum number of flags to keep
|
||||
"max_flags": 1000,
|
||||
|
||||
// Keyboard Controls
|
||||
// https://github.com/opentk/opentk/blob/master/src/OpenTK/Input/Key.cs
|
||||
"controls": {
|
||||
"buttons": {
|
||||
// Show/Hide the profiler
|
||||
"toggle_profiler": "F2"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue