diff options
| author | 2019-03-27 12:51:17 -0400 | |
|---|---|---|
| committer | 2019-03-27 12:51:21 -0400 | |
| commit | 947d364dba77d4fab50d5fefb27b92205af63db8 (patch) | |
| tree | c3cdeda4649ac7fd13e193f086a9dc0b1a80177f /src/video_core/gpu_thread.h | |
| parent | gl_rasterizer: Remove unused reference member variable from RasterizerOpenGL (diff) | |
| download | yuzu-947d364dba77d4fab50d5fefb27b92205af63db8.tar.gz yuzu-947d364dba77d4fab50d5fefb27b92205af63db8.tar.xz yuzu-947d364dba77d4fab50d5fefb27b92205af63db8.zip | |
gpu_thread: Remove unused dma_pusher class member variable from ThreadManager
The pusher instance is only ever used in the constructor of the
ThreadManager for creating the thread that the ThreadManager instance
contains. Aside from that, the member is unused, so it can be removed.
Diffstat (limited to 'src/video_core/gpu_thread.h')
| -rw-r--r-- | src/video_core/gpu_thread.h | 3 |
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: | |||
| 177 | private: | 175 | private: |
| 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 | }; |