diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-07 14:24:30 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-07 14:32:05 +0200 |
commit | e40b0cf437bc98a121481b9ea54c472922c05ec4 (patch) | |
tree | a0e02325040243d531f2366e1dc51f173e90b123 /src/core/hle/service/nvflinger | |
parent | nvflinger: Use std::string_view in OpenDisplay() (diff) | |
download | yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.gz yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.bz2 yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.lz yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.xz yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.tar.zst yuzu-e40b0cf437bc98a121481b9ea54c472922c05ec4.zip |
Diffstat (limited to 'src/core/hle/service/nvflinger')
-rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 3 | ||||
-rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.h | 5 |
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 @@ // Refer to the license.txt file included. #include <algorithm> +#include <boost/optional.hpp> #include "common/alignment.h" +#include "common/assert.h" +#include "common/logging/log.h" #include "common/microprofile.h" #include "common/scope_exit.h" #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 @@ #pragma once #include <memory> +#include <string> #include <string_view> -#include <boost/optional.hpp> +#include <vector> + +#include "common/common_types.h" #include "core/hle/kernel/event.h" namespace CoreTiming { |