summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-05-24 21:16:22 +0200
committerarchshift <gh@archshift.com>2015-05-30 20:17:36 +0200
commit5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4 (patch)
tree1a26ca3a3015ce6415a6ae48dca17ed0eeb2d252 /src/video_core
parentMerge pull request #810 from yuriks/memmap (diff)
downloadyuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.gz
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.bz2
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.lz
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.xz
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.zst
yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.zip
Diffstat (limited to '')
-rw-r--r--src/common/vector_math.h (renamed from src/video_core/math.h)0
-rw-r--r--src/video_core/CMakeLists.txt1
-rw-r--r--src/video_core/color.h3
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp2
-rw-r--r--src/video_core/debug_utils/debug_utils.h3
-rw-r--r--src/video_core/pica.h3
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer_cache.cpp2
7 files changed, 6 insertions, 8 deletions
diff --git a/src/video_core/math.h b/src/common/vector_math.h
index 4928c9bf2..4928c9bf2 100644
--- a/src/video_core/math.h
+++ b/src/common/vector_math.h
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index 0258a3255..f50f73b52 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -33,7 +33,6 @@ set(HEADERS
command_processor.h
gpu_debugger.h
hwrasterizer_base.h
- math.h
pica.h
primitive_assembly.h
rasterizer.h
diff --git a/src/video_core/color.h b/src/video_core/color.h
index 4d2026eb0..422fdc8af 100644
--- a/src/video_core/color.h
+++ b/src/video_core/color.h
@@ -6,8 +6,7 @@
#include "common/common_types.h"
#include "common/swap.h"
-
-#include "video_core/math.h"
+#include "common/vector_math.h"
namespace Color {
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 @@
#include "common/assert.h"
#include "common/file_util.h"
#include "common/math_util.h"
+#include "common/vector_math.h"
#include "video_core/color.h"
-#include "video_core/math.h"
#include "video_core/pica.h"
#include "video_core/utils.h"
#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 @@
#include <mutex>
#include <vector>
-#include "video_core/math.h"
+#include "common/vector_math.h"
+
#include "video_core/pica.h"
namespace Pica {
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 6ebeb08f7..c556def03 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -15,8 +15,7 @@
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "common/logging/log.h"
-
-#include "math.h"
+#include "common/vector_math.h"
namespace Pica {
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
index 6f88a8b21..2e4110a88 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
@@ -4,13 +4,13 @@
#include "common/make_unique.h"
#include "common/math_util.h"
+#include "common/vector_math.h"
#include "core/memory.h"
#include "video_core/renderer_opengl/gl_rasterizer_cache.h"
#include "video_core/renderer_opengl/pica_to_gl.h"
#include "video_core/debug_utils/debug_utils.h"
-#include "video_core/math.h"
RasterizerCacheOpenGL::~RasterizerCacheOpenGL() {
FullFlush();