From 947d364dba77d4fab50d5fefb27b92205af63db8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 27 Mar 2019 12:51:17 -0400 Subject: 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. --- src/video_core/gpu_thread.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/video_core/gpu_thread.h') 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 #include #include -#include #include #include #include @@ -177,7 +175,6 @@ private: private: SynchState state; VideoCore::RendererBase& renderer; - Tegra::DmaPusher& dma_pusher; std::thread thread; std::thread::id thread_id; }; -- cgit v1.2.3