summaryrefslogtreecommitdiff
path: root/src/video_core/cdma_pusher.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2022-01-30 22:26:01 +0100
committerGravatar Fernando Sahmkow2022-10-06 21:00:52 +0200
commit2931101e6f5aa755566ef40f6e6dc71909fd3e92 (patch)
tree76e847786e355e24a136562d42177b895a03315e /src/video_core/cdma_pusher.h
parentVideoCore: Refactor syncing. (diff)
downloadyuzu-2931101e6f5aa755566ef40f6e6dc71909fd3e92.tar.gz
yuzu-2931101e6f5aa755566ef40f6e6dc71909fd3e92.tar.xz
yuzu-2931101e6f5aa755566ef40f6e6dc71909fd3e92.zip
NVDRV: Refactor Host1x
Diffstat (limited to 'src/video_core/cdma_pusher.h')
-rw-r--r--src/video_core/cdma_pusher.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/video_core/cdma_pusher.h b/src/video_core/cdma_pusher.h
index de17c2082..83112dfce 100644
--- a/src/video_core/cdma_pusher.h
+++ b/src/video_core/cdma_pusher.h
@@ -12,10 +12,9 @@
12 12
13namespace Tegra { 13namespace Tegra {
14 14
15class GPU;
16
17namespace Host1x { 15namespace Host1x {
18class Control; 16class Control;
17class Host1x;
19class Nvdec; 18class Nvdec;
20class SyncptIncrManager; 19class SyncptIncrManager;
21class Vic; 20class Vic;
@@ -91,7 +90,7 @@ enum class ThiMethod : u32 {
91 90
92class CDmaPusher { 91class CDmaPusher {
93public: 92public:
94 explicit CDmaPusher(GPU& gpu_); 93 explicit CDmaPusher(Host1x::Host1x& host1x);
95 ~CDmaPusher(); 94 ~CDmaPusher();
96 95
97 /// Process the command entry 96 /// Process the command entry
@@ -104,7 +103,7 @@ private:
104 /// Write arguments value to the ThiRegisters member at the specified offset 103 /// Write arguments value to the ThiRegisters member at the specified offset
105 void ThiStateWrite(ThiRegisters& state, u32 offset, u32 argument); 104 void ThiStateWrite(ThiRegisters& state, u32 offset, u32 argument);
106 105
107 GPU& gpu; 106 Host1x::Host1x& host1x;
108 std::shared_ptr<Tegra::Host1x::Nvdec> nvdec_processor; 107 std::shared_ptr<Tegra::Host1x::Nvdec> nvdec_processor;
109 std::unique_ptr<Tegra::Host1x::Vic> vic_processor; 108 std::unique_ptr<Tegra::Host1x::Vic> vic_processor;
110 std::unique_ptr<Tegra::Host1x::Control> host1x_processor; 109 std::unique_ptr<Tegra::Host1x::Control> host1x_processor;