diff options
author | bunnei <bunneidev@gmail.com> | 2019-04-19 19:09:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-19 19:09:20 -0400 |
commit | 40dc893c372c81c687eca2d0b964220a8f8aeab4 (patch) | |
tree | 1c05675d446978752a749f2cb18a797c6b737998 /src/video_core/gpu.h | |
parent | 83b830eb2f80de8073a7304ab6270621d062d0b2 (diff) | |
parent | 612e1388df3bed64081488f2a99cce522c80c76d (diff) |
Merge pull request #2374 from lioncash/pagetable
core: Reorganize boot order
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index de30ea354..fe6628923 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -207,6 +207,11 @@ public: }; } regs{}; + /// Performs any additional setup necessary in order to begin GPU emulation. + /// This can be used to launch any necessary threads and register any necessary + /// core timing events. + virtual void Start() = 0; + /// Push GPU command entries to be processed virtual void PushGPUEntries(Tegra::CommandList&& entries) = 0; |