diff options
author | archshift <gh@archshift.com> | 2015-05-24 21:20:31 +0200 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-05-30 20:17:37 +0200 |
commit | 76690392bf8923d7172936836d15e3caebb26cf0 (patch) | |
tree | e5896ecb4f042e88a650f4ad2287393e2346c094 /src/video_core/rasterizer.cpp | |
parent | Move video_core/math.h to common/vector_math.h (diff) | |
download | yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar.gz yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar.bz2 yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar.lz yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar.xz yuzu-76690392bf8923d7172936836d15e3caebb26cf0.tar.zst yuzu-76690392bf8923d7172936836d15e3caebb26cf0.zip |
Diffstat (limited to 'src/video_core/rasterizer.cpp')
-rw-r--r-- | src/video_core/rasterizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 6df3a74f2..93288be2c 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -4,6 +4,7 @@ #include <algorithm> +#include "common/color.h" #include "common/common_types.h" #include "common/math_util.h" #include "common/profiler.h" @@ -13,7 +14,6 @@ #include "debug_utils/debug_utils.h" #include "math.h" -#include "color.h" #include "pica.h" #include "rasterizer.h" #include "vertex_shader.h" |