diff options
| author | 2019-03-30 20:08:09 -0400 | |
|---|---|---|
| committer | 2019-04-01 21:32:39 -0400 | |
| commit | 4555b637500daeb26f556113656fc3d242e60872 (patch) | |
| tree | 3b79747fa480de5bcfb7e836d75f9a414599246d /src/video_core/gpu_asynch.cpp | |
| parent | Merge pull request #2301 from FearlessTobi/remove-amiibo-setting (diff) | |
| download | yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.gz yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.xz yuzu-4555b637500daeb26f556113656fc3d242e60872.zip | |
gpu_thread: Improve synchronization by using CoreTiming.
Diffstat (limited to 'src/video_core/gpu_asynch.cpp')
| -rw-r--r-- | src/video_core/gpu_asynch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_asynch.cpp b/src/video_core/gpu_asynch.cpp index 8b355cf7b..db507cf04 100644 --- a/src/video_core/gpu_asynch.cpp +++ b/src/video_core/gpu_asynch.cpp | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | namespace VideoCommon { | 9 | namespace VideoCommon { |
| 10 | 10 | ||
| 11 | GPUAsynch::GPUAsynch(Core::System& system, VideoCore::RendererBase& renderer) | 11 | GPUAsynch::GPUAsynch(Core::System& system, VideoCore::RendererBase& renderer) |
| 12 | : Tegra::GPU(system, renderer), gpu_thread{renderer, *dma_pusher} {} | 12 | : Tegra::GPU(system, renderer), gpu_thread{system, renderer, *dma_pusher} {} |
| 13 | 13 | ||
| 14 | GPUAsynch::~GPUAsynch() = default; | 14 | GPUAsynch::~GPUAsynch() = default; |
| 15 | 15 | ||