summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-17 18:32:28 +0200
committerGitHub <noreply@github.com>2018-09-17 18:32:28 +0200
commit2c9c0d70a31acad88e2f16883e68f6550c29b7bf (patch)
treef4288cd7010024001d9d9f0d9812d45eaa93fc95 /src/core/hle/service/vi/vi.cpp
parentMerge pull request #1313 from lioncash/error (diff)
parentservice/vi: Replace includes with forward declarations where applicable (diff)
downloadyuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar.gz
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar.bz2
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar.lz
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar.xz
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.tar.zst
yuzu-2c9c0d70a31acad88e2f16883e68f6550c29b7bf.zip
Diffstat (limited to 'src/core/hle/service/vi/vi.cpp')
-rw-r--r--src/core/hle/service/vi/vi.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 13545d50a..d0cde5ede 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -4,25 +4,28 @@
#include <algorithm>
#include <array>
+#include <cstring>
#include <memory>
#include <type_traits>
#include <utility>
#include <boost/optional.hpp>
#include "common/alignment.h"
+#include "common/assert.h"
+#include "common/common_funcs.h"
+#include "common/logging/log.h"
#include "common/math_util.h"
-#include "common/scope_exit.h"
+#include "common/swap.h"
#include "core/core_timing.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/event.h"
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/nvflinger/buffer_queue.h"
+#include "core/hle/service/nvflinger/nvflinger.h"
#include "core/hle/service/vi/vi.h"
#include "core/hle/service/vi/vi_m.h"
#include "core/hle/service/vi/vi_s.h"
#include "core/hle/service/vi/vi_u.h"
#include "core/settings.h"
-#include "video_core/renderer_base.h"
-#include "video_core/video_core.h"
namespace Service::VI {