diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-09-11 18:17:02 -0300 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-09-11 18:17:02 -0300 |
commit | ece0f050a98cfe97aa205f1f908226ee6813a52d (patch) | |
tree | c3f751133daa8a941e97575e0bc963783ebd8b11 /src/video_core/rasterizer.cpp | |
parent | ef622a07ffc95a1cd3229556244a0fa887cf2e6f (diff) | |
parent | aec28ed91eb570c5c7aac31ee6ef302df91ee868 (diff) |
Merge pull request #1143 from lioncash/vcore-hdr
video_core: Reorganize headers
Diffstat (limited to 'src/video_core/rasterizer.cpp')
-rw-r--r-- | src/video_core/rasterizer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 77eadda9e..a90ff5fef 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include <algorithm> +#include <cmath> #include "common/color.h" #include "common/common_types.h" @@ -10,15 +11,14 @@ #include "common/microprofile.h" #include "common/profiler.h" -#include "core/hw/gpu.h" #include "core/memory.h" +#include "core/hw/gpu.h" -#include "debug_utils/debug_utils.h" -#include "math.h" -#include "pica.h" -#include "rasterizer.h" -#include "shader/shader_interpreter.h" +#include "video_core/pica.h" +#include "video_core/rasterizer.h" #include "video_core/utils.h" +#include "video_core/debug_utils/debug_utils.h" +#include "video_core/shader/shader_interpreter.h" namespace Pica { |