diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-06 00:21:15 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-06 00:26:32 +0200 |
commit | 26223f812400430ac690ab3f33068924c076cd45 (patch) | |
tree | c78dbfa502b8b3ce895e3bc3a8939dbaa970a2bd /src/video_core/engines/maxwell_3d.h | |
parent | Merge pull request #2282 from bunnei/gpu-asynch-v2 (diff) | |
download | yuzu-26223f812400430ac690ab3f33068924c076cd45.tar yuzu-26223f812400430ac690ab3f33068924c076cd45.tar.gz yuzu-26223f812400430ac690ab3f33068924c076cd45.tar.bz2 yuzu-26223f812400430ac690ab3f33068924c076cd45.tar.lz yuzu-26223f812400430ac690ab3f33068924c076cd45.tar.xz yuzu-26223f812400430ac690ab3f33068924c076cd45.tar.zst yuzu-26223f812400430ac690ab3f33068924c076cd45.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 7fbf1026e..7177bc06c 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -16,13 +16,16 @@ #include "common/math_util.h" #include "video_core/gpu.h" #include "video_core/macro_interpreter.h" -#include "video_core/memory_manager.h" #include "video_core/textures/texture.h" namespace Core { class System; } +namespace Tegra { +class MemoryManager; +} + namespace VideoCore { class RasterizerInterface; } |