summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-07 08:24:30 -0400
committerGravatar Lioncash2018-08-07 08:32:05 -0400
commite40b0cf437bc98a121481b9ea54c472922c05ec4 (patch)
treea0e02325040243d531f2366e1dc51f173e90b123
parentnvflinger: Use std::string_view in OpenDisplay() (diff)
downloadyuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.gz
yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.xz
yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.zip
nvflinger: Get rid of indirect inclusions
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp3
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.h5
2 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index e6848827e..1e287ab62 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -3,8 +3,11 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm> 5#include <algorithm>
6#include <boost/optional.hpp>
6 7
7#include "common/alignment.h" 8#include "common/alignment.h"
9#include "common/assert.h"
10#include "common/logging/log.h"
8#include "common/microprofile.h" 11#include "common/microprofile.h"
9#include "common/scope_exit.h" 12#include "common/scope_exit.h"
10#include "core/core.h" 13#include "core/core.h"
diff --git a/src/core/hle/service/nvflinger/nvflinger.h b/src/core/hle/service/nvflinger/nvflinger.h
index 73ad994db..5374df175 100644
--- a/src/core/hle/service/nvflinger/nvflinger.h
+++ b/src/core/hle/service/nvflinger/nvflinger.h
@@ -5,8 +5,11 @@
5#pragma once 5#pragma once
6 6
7#include <memory> 7#include <memory>
8#include <string>
8#include <string_view> 9#include <string_view>
9#include <boost/optional.hpp> 10#include <vector>
11
12#include "common/common_types.h"
10#include "core/hle/kernel/event.h" 13#include "core/hle/kernel/event.h"
11 14
12namespace CoreTiming { 15namespace CoreTiming {