diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-12 00:24:33 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-12-28 16:33:48 -0800 |
commit | 40571c073faa02a6a4301e7f0ce365ef50a400aa (patch) | |
tree | f36bf8633469b5fc370495477e3c7cbc6e97a9c6 /src/video_core/gpu.h | |
parent | 14c825bd1c37b2444e858bf1a75fb77455b4eb52 (diff) |
video_core: gpu: Implement synchronous mode using threaded GPU.
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index a2bb4d82d..d81e38680 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -406,10 +406,10 @@ private: u64 last_flush_fence{}; std::mutex flush_request_mutex; + const bool is_async; + VideoCommon::GPUThread::ThreadManager gpu_thread; std::unique_ptr<Core::Frontend::GraphicsContext> cpu_context; - - const bool is_async; }; #define ASSERT_REG_POSITION(field_name, position) \ |