diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-21 15:58:59 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-28 01:36:54 +0200 |
commit | 45c4781544624c85a8178c6ee445cfe6a4751910 (patch) | |
tree | 7436de6c4df4443eaa9ddac821550310a961a92b /src/video_core | |
parent | Common: Cleanup emu_window includes. (diff) | |
download | yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar.gz yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar.bz2 yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar.lz yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar.xz yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.tar.zst yuzu-45c4781544624c85a8178c6ee445cfe6a4751910.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/command_processor.cpp | 12 | ||||
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 1 | ||||
-rw-r--r-- | src/video_core/renderer_base.h | 2 |
3 files changed, 10 insertions, 5 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index b46fadd9f..110caec76 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -6,18 +6,20 @@ #include "common/profiler.h" +#include "core/hle/service/gsp_gpu.h" +#include "core/hw/gpu.h" +#include "core/settings.h" + +#include "debug_utils/debug_utils.h" + #include "clipper.h" #include "command_processor.h" #include "math.h" #include "pica.h" #include "primitive_assembly.h" +#include "renderer_base.h" #include "vertex_shader.h" #include "video_core.h" -#include "core/hle/service/gsp_gpu.h" -#include "core/hw/gpu.h" -#include "core/settings.h" - -#include "debug_utils/debug_utils.h" namespace Pica { diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 7b8ab72b6..d24c0f11e 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -23,6 +23,7 @@ #include "common/vector_math.h" #include "video_core/pica.h" +#include "video_core/renderer_base.h" #include "video_core/utils.h" #include "video_core/video_core.h" diff --git a/src/video_core/renderer_base.h b/src/video_core/renderer_base.h index 5757ac75d..fbbf17db4 100644 --- a/src/video_core/renderer_base.h +++ b/src/video_core/renderer_base.h @@ -4,6 +4,8 @@ #pragma once +#include <memory> + #include "common/common_types.h" #include "video_core/hwrasterizer_base.h" |