diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-01 03:50:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-01 03:50:12 +0200 |
commit | 1c05c06e048c0471653275dcb00f391acbfd6324 (patch) | |
tree | 8eda46d4aac083d23a52223e1a3fc46bc6690a6c /src/video_core/engines/maxwell_3d.cpp | |
parent | Merge pull request #1205 from bunnei/improve-rasterizer-cache-2 (diff) | |
parent | core/core: Replace includes with forward declarations where applicable (diff) | |
download | yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.gz yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.bz2 yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.lz yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.xz yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.zst yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index f32a79d7b..68ff1e86b 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -5,13 +5,12 @@ #include <cinttypes> #include "common/assert.h" #include "core/core.h" +#include "core/memory.h" #include "video_core/debug_utils/debug_utils.h" #include "video_core/engines/maxwell_3d.h" #include "video_core/rasterizer_interface.h" #include "video_core/renderer_base.h" -#include "video_core/textures/decoders.h" #include "video_core/textures/texture.h" -#include "video_core/video_core.h" namespace Tegra { namespace Engines { |