summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar archshift2015-05-24 12:16:22 -0700
committerGravatar archshift2015-05-30 11:17:36 -0700
commit5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4 (patch)
tree1a26ca3a3015ce6415a6ae48dca17ed0eeb2d252 /src/video_core/debug_utils
parentMerge pull request #810 from yuriks/memmap (diff)
downloadyuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.gz
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.xz
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.zip
Move video_core/math.h to common/vector_math.h
The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp2
-rw-r--r--src/video_core/debug_utils/debug_utils.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index b92cd1a7e..5392dae21 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -19,9 +19,9 @@
19#include "common/assert.h" 19#include "common/assert.h"
20#include "common/file_util.h" 20#include "common/file_util.h"
21#include "common/math_util.h" 21#include "common/math_util.h"
22#include "common/vector_math.h"
22 23
23#include "video_core/color.h" 24#include "video_core/color.h"
24#include "video_core/math.h"
25#include "video_core/pica.h" 25#include "video_core/pica.h"
26#include "video_core/utils.h" 26#include "video_core/utils.h"
27#include "video_core/video_core.h" 27#include "video_core/video_core.h"
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index f361a5385..7926d64ec 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -12,7 +12,8 @@
12#include <mutex> 12#include <mutex>
13#include <vector> 13#include <vector>
14 14
15#include "video_core/math.h" 15#include "common/vector_math.h"
16
16#include "video_core/pica.h" 17#include "video_core/pica.h"
17 18
18namespace Pica { 19namespace Pica {