aec8177850
* Replace Host FPS with FIFO% * Change measurement order. Improve calculation. Now at 100% when FIFO is blocking game exectution, rather than "0". * Address feedback (1) * Remove Host FPS * FIFO rather than Fifo * Address Ac_k feedback * Rebase
23 lines
621 B
C#
23 lines
621 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui
|
|
{
|
|
public class StatusUpdatedEventArgs : EventArgs
|
|
{
|
|
public bool VSyncEnabled;
|
|
public string DockedMode;
|
|
public string GameStatus;
|
|
public string FifoStatus;
|
|
public string GpuName;
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, string dockedMode, string gameStatus, string fifoStatus, string gpuName)
|
|
{
|
|
VSyncEnabled = vSyncEnabled;
|
|
DockedMode = dockedMode;
|
|
GameStatus = gameStatus;
|
|
FifoStatus = fifoStatus;
|
|
GpuName = gpuName;
|
|
}
|
|
}
|
|
}
|