diff options
| author | 2015-09-11 07:20:02 -0400 | |
|---|---|---|
| committer | 2015-09-11 07:31:15 -0400 | |
| commit | aec28ed91eb570c5c7aac31ee6ef302df91ee868 (patch) | |
| tree | ce6b4f5b99132665c448b26e3e3c8db88e568617 /src/video_core/rasterizer.cpp | |
| parent | Merge pull request #1141 from lioncash/hdr (diff) | |
| download | yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.gz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.xz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.zip | |
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 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cmath> | ||
| 6 | 7 | ||
| 7 | #include "common/color.h" | 8 | #include "common/color.h" |
| 8 | #include "common/common_types.h" | 9 | #include "common/common_types.h" |
| @@ -10,15 +11,14 @@ | |||
| 10 | #include "common/microprofile.h" | 11 | #include "common/microprofile.h" |
| 11 | #include "common/profiler.h" | 12 | #include "common/profiler.h" |
| 12 | 13 | ||
| 13 | #include "core/hw/gpu.h" | ||
| 14 | #include "core/memory.h" | 14 | #include "core/memory.h" |
| 15 | #include "core/hw/gpu.h" | ||
| 15 | 16 | ||
| 16 | #include "debug_utils/debug_utils.h" | 17 | #include "video_core/pica.h" |
| 17 | #include "math.h" | 18 | #include "video_core/rasterizer.h" |
| 18 | #include "pica.h" | ||
| 19 | #include "rasterizer.h" | ||
| 20 | #include "shader/shader_interpreter.h" | ||
| 21 | #include "video_core/utils.h" | 19 | #include "video_core/utils.h" |
| 20 | #include "video_core/debug_utils/debug_utils.h" | ||
| 21 | #include "video_core/shader/shader_interpreter.h" | ||
| 22 | 22 | ||
| 23 | namespace Pica { | 23 | namespace Pica { |
| 24 | 24 | ||