summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-06-11 00:02:33 +0200
committerSubv <subv2112@gmail.com>2018-06-12 18:27:36 +0200
commit987a17066514dbab8e02acae20d4ea32c4f502eb (patch)
tree81b613108c9a3147bac98de15336dae217fa1be1 /src/video_core/gpu.h
parentMerge pull request #553 from Subv/iset (diff)
downloadyuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar.gz
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar.bz2
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar.lz
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar.xz
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.tar.zst
yuzu-987a17066514dbab8e02acae20d4ea32c4f502eb.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/gpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 5852b9619..7b4e9b842 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -63,6 +63,7 @@ namespace Engines {
class Fermi2D;
class Maxwell3D;
class MaxwellCompute;
+class MaxwellDMA;
} // namespace Engines
enum class EngineID {
@@ -103,6 +104,8 @@ private:
std::unique_ptr<Engines::Fermi2D> fermi_2d;
/// Compute engine
std::unique_ptr<Engines::MaxwellCompute> maxwell_compute;
+ /// DMA engine
+ std::unique_ptr<Engines::MaxwellDMA> maxwell_dma;
};
} // namespace Tegra