System: Fix CPU usage not showing for sw-renderer-for-readbacks

This commit is contained in:
Connor McLaughlin
2022-08-05 17:17:29 +10:00
parent 8f314c8d49
commit 06ecc50797
7 changed files with 28 additions and 17 deletions

View File

@ -20,6 +20,11 @@ class HostDisplayTexture;
class TimingEvent;
class Timers;
namespace Threading
{
class Thread;
}
class GPU
{
public:
@ -74,6 +79,7 @@ public:
virtual ~GPU();
virtual GPURenderer GetRendererType() const = 0;
virtual const Threading::Thread* GetSWThread() const = 0;
virtual bool Initialize();
virtual void Reset(bool clear_vram);