summaryrefslogtreecommitdiff
path: root/src/video_core/gpu_thread.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-03-30 19:59:45 -0400
committerGravatar GitHub2019-03-30 19:59:45 -0400
commite199d1e14f8034f0623b330bcd90cee06c7264b8 (patch)
treee3b758636b55b1341f361d3e3bc1d02ccb6a3137 /src/video_core/gpu_thread.h
parentMerge pull request #2308 from lioncash/deduction (diff)
parentgpu_thread: Remove unused dma_pusher class member variable from ThreadManager (diff)
downloadyuzu-e199d1e14f8034f0623b330bcd90cee06c7264b8.tar.gz
yuzu-e199d1e14f8034f0623b330bcd90cee06c7264b8.tar.xz
yuzu-e199d1e14f8034f0623b330bcd90cee06c7264b8.zip
Merge pull request #2298 from lioncash/variable
video_core/{gl_rasterizer, gpu_thread}: Remove unused class variables where applicable
Diffstat (limited to 'src/video_core/gpu_thread.h')
-rw-r--r--src/video_core/gpu_thread.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h
index 8cd7db1c6..6ab7142f8 100644
--- a/src/video_core/gpu_thread.h
+++ b/src/video_core/gpu_thread.h
@@ -4,10 +4,8 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <array>
8#include <atomic> 7#include <atomic>
9#include <condition_variable> 8#include <condition_variable>
10#include <memory>
11#include <mutex> 9#include <mutex>
12#include <optional> 10#include <optional>
13#include <thread> 11#include <thread>
@@ -177,7 +175,6 @@ private:
177private: 175private:
178 SynchState state; 176 SynchState state;
179 VideoCore::RendererBase& renderer; 177 VideoCore::RendererBase& renderer;
180 Tegra::DmaPusher& dma_pusher;
181 std::thread thread; 178 std::thread thread;
182 std::thread::id thread_id; 179 std::thread::id thread_id;
183}; 180};