diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-11 13:20:02 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 13:31:15 +0200 |
commit | aec28ed91eb570c5c7aac31ee6ef302df91ee868 (patch) | |
tree | ce6b4f5b99132665c448b26e3e3c8db88e568617 /src/video_core/rasterizer.cpp | |
parent | Merge pull request #1141 from lioncash/hdr (diff) | |
download | yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.gz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.bz2 yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.lz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.xz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.zst yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.zip |
Diffstat (limited to '')
-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 { |