summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-13 22:43:31 +0200
committerLioncash <mathew1800@gmail.com>2018-09-13 22:55:47 +0200
commit0258b444eff98388f25233a91764603f2ffea97c (patch)
tree59493167ca2bdd058b4b0f412dc2ec0b04f86343 /src/core/hle/service/vi/vi.cpp
parentMerge pull request #1308 from valentinvanelslande/ipc (diff)
downloadyuzu-0258b444eff98388f25233a91764603f2ffea97c.tar
yuzu-0258b444eff98388f25233a91764603f2ffea97c.tar.gz
yuzu-0258b444eff98388f25233a91764603f2ffea97c.tar.bz2
yuzu-0258b444eff98388f25233a91764603f2ffea97c.tar.lz
yuzu-0258b444eff98388f25233a91764603f2ffea97c.tar.xz
yuzu-0258b444eff98388f25233a91764603f2ffea97c.tar.zst
yuzu-0258b444eff98388f25233a91764603f2ffea97c.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 85244ac3b..6cfad0d66 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 {