summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/CMakeLists.txt2
-rw-r--r--src/common/algorithm.h (renamed from src/common/binary_find.h)1
-rw-r--r--src/video_core/texture_cache/surface_base.cpp1
-rw-r--r--src/video_core/texture_cache/surface_base.h5
4 files changed, 5 insertions, 4 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 906c486fd..5b51fcafa 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -95,11 +95,11 @@ add_custom_command(OUTPUT scm_rev.cpp
95) 95)
96 96
97add_library(common STATIC 97add_library(common STATIC
98 algorithm.h
98 alignment.h 99 alignment.h
99 assert.h 100 assert.h
100 detached_tasks.cpp 101 detached_tasks.cpp
101 detached_tasks.h 102 detached_tasks.h
102 binary_find.h
103 bit_field.h 103 bit_field.h
104 bit_util.h 104 bit_util.h
105 cityhash.cpp 105 cityhash.cpp
diff --git a/src/common/binary_find.h b/src/common/algorithm.h
index 5cc523bf9..18e7ece98 100644
--- a/src/common/binary_find.h
+++ b/src/common/algorithm.h
@@ -5,6 +5,7 @@
5#pragma once 5#pragma once
6 6
7#include <algorithm> 7#include <algorithm>
8#include <functional>
8 9
9namespace Common { 10namespace Common {
10 11
diff --git a/src/video_core/texture_cache/surface_base.cpp b/src/video_core/texture_cache/surface_base.cpp
index 683c49207..829268b4c 100644
--- a/src/video_core/texture_cache/surface_base.cpp
+++ b/src/video_core/texture_cache/surface_base.cpp
@@ -2,6 +2,7 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/algorithm.h"
5#include "common/assert.h" 6#include "common/assert.h"
6#include "common/common_types.h" 7#include "common/common_types.h"
7#include "common/microprofile.h" 8#include "common/microprofile.h"
diff --git a/src/video_core/texture_cache/surface_base.h b/src/video_core/texture_cache/surface_base.h
index 5e497e49f..1bed82898 100644
--- a/src/video_core/texture_cache/surface_base.h
+++ b/src/video_core/texture_cache/surface_base.h
@@ -4,12 +4,11 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <algorithm> 7#include <optional>
8#include <tuple>
8#include <unordered_map> 9#include <unordered_map>
9#include <vector> 10#include <vector>
10 11
11#include "common/assert.h"
12#include "common/binary_find.h"
13#include "common/common_types.h" 12#include "common/common_types.h"
14#include "video_core/gpu.h" 13#include "video_core/gpu.h"
15#include "video_core/morton.h" 14#include "video_core/morton.h"