diff options
| author | 2019-04-04 22:38:04 -0400 | |
|---|---|---|
| committer | 2019-04-04 22:38:04 -0400 | |
| commit | 66be5150d6d201e3f8ca6e5e09968f052df4beb1 (patch) | |
| tree | ff6a45a1b6dce02eadd9f432cb1b8bda90f66685 /src/video_core/gpu_asynch.cpp | |
| parent | Merge pull request #2292 from lioncash/nacp (diff) | |
| parent | gpu_thread: Improve synchronization by using CoreTiming. (diff) | |
| download | yuzu-66be5150d6d201e3f8ca6e5e09968f052df4beb1.tar.gz yuzu-66be5150d6d201e3f8ca6e5e09968f052df4beb1.tar.xz yuzu-66be5150d6d201e3f8ca6e5e09968f052df4beb1.zip | |
Merge pull request #2282 from bunnei/gpu-asynch-v2
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 | ||