aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/gpu_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-30 19:59:45 -0400
committerGitHub <noreply@github.com>2019-03-30 19:59:45 -0400
commite199d1e14f8034f0623b330bcd90cee06c7264b8 (patch)
treee3b758636b55b1341f361d3e3bc1d02ccb6a3137 /src/video_core/gpu_thread.h
parentba3d95e5509585daadc45a466fcf0ee18a2d8e29 (diff)
parent947d364dba77d4fab50d5fefb27b92205af63db8 (diff)
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 @@
#pragma once
-#include <array>
#include <atomic>
#include <condition_variable>
-#include <memory>
#include <mutex>
#include <optional>
#include <thread>
@@ -177,7 +175,6 @@ private:
private:
SynchState state;
VideoCore::RendererBase& renderer;
- Tegra::DmaPusher& dma_pusher;
std::thread thread;
std::thread::id thread_id;
};