summaryrefslogtreecommitdiffstats
path: root/src/video_core/host1x/control.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/video_core/host1x/control.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/host1x/control.h b/src/video_core/host1x/control.h
index 04dac7d51..18a9b56c0 100644
--- a/src/video_core/host1x/control.h
+++ b/src/video_core/host1x/control.h
@@ -8,10 +8,10 @@
#include "common/common_types.h"
namespace Tegra {
-class GPU;
namespace Host1x {
+class Host1x;
class Nvdec;
class Control {
@@ -22,7 +22,7 @@ public:
WaitSyncpt32 = 0x50,
};
- explicit Control(GPU& gpu);
+ explicit Control(Host1x& host1x);
~Control();
/// Writes the method into the state, Invoke Execute() if encountered
@@ -33,7 +33,7 @@ private:
void Execute(u32 data);
u32 syncpoint_value{};
- GPU& gpu;
+ Host1x& host1x;
};
} // namespace Host1x