diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 12 | ||||
| -rw-r--r-- | src/video_core/renderer_base.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/clipper.cpp (renamed from src/video_core/clipper.cpp) | 4 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/clipper.h (renamed from src/video_core/clipper.h) | 0 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/rasterizer.cpp (renamed from src/video_core/rasterizer.cpp) | 2 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/rasterizer.h (renamed from src/video_core/rasterizer.h) | 0 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/swrasterizer.cpp (renamed from src/video_core/swrasterizer.cpp) | 4 | ||||
| -rw-r--r-- | src/video_core/swrasterizer/swrasterizer.h (renamed from src/video_core/swrasterizer.h) | 0 |
8 files changed, 12 insertions, 12 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 11bc61e14..962228680 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -1,10 +1,8 @@ | |||
| 1 | set(SRCS | 1 | set(SRCS |
| 2 | clipper.cpp | ||
| 3 | command_processor.cpp | 2 | command_processor.cpp |
| 4 | debug_utils/debug_utils.cpp | 3 | debug_utils/debug_utils.cpp |
| 5 | pica.cpp | 4 | pica.cpp |
| 6 | primitive_assembly.cpp | 5 | primitive_assembly.cpp |
| 7 | rasterizer.cpp | ||
| 8 | regs.cpp | 6 | regs.cpp |
| 9 | renderer_base.cpp | 7 | renderer_base.cpp |
| 10 | renderer_opengl/gl_rasterizer.cpp | 8 | renderer_opengl/gl_rasterizer.cpp |
| @@ -15,7 +13,9 @@ set(SRCS | |||
| 15 | renderer_opengl/renderer_opengl.cpp | 13 | renderer_opengl/renderer_opengl.cpp |
| 16 | shader/shader.cpp | 14 | shader/shader.cpp |
| 17 | shader/shader_interpreter.cpp | 15 | shader/shader_interpreter.cpp |
| 18 | swrasterizer.cpp | 16 | swrasterizer/clipper.cpp |
| 17 | swrasterizer/rasterizer.cpp | ||
| 18 | swrasterizer/swrasterizer.cpp | ||
| 19 | texture/etc1.cpp | 19 | texture/etc1.cpp |
| 20 | texture/texture_decode.cpp | 20 | texture/texture_decode.cpp |
| 21 | vertex_loader.cpp | 21 | vertex_loader.cpp |
| @@ -23,7 +23,6 @@ set(SRCS | |||
| 23 | ) | 23 | ) |
| 24 | 24 | ||
| 25 | set(HEADERS | 25 | set(HEADERS |
| 26 | clipper.h | ||
| 27 | command_processor.h | 26 | command_processor.h |
| 28 | debug_utils/debug_utils.h | 27 | debug_utils/debug_utils.h |
| 29 | gpu_debugger.h | 28 | gpu_debugger.h |
| @@ -31,7 +30,6 @@ set(HEADERS | |||
| 31 | pica_state.h | 30 | pica_state.h |
| 32 | pica_types.h | 31 | pica_types.h |
| 33 | primitive_assembly.h | 32 | primitive_assembly.h |
| 34 | rasterizer.h | ||
| 35 | rasterizer_interface.h | 33 | rasterizer_interface.h |
| 36 | regs.h | 34 | regs.h |
| 37 | regs_framebuffer.h | 35 | regs_framebuffer.h |
| @@ -52,7 +50,9 @@ set(HEADERS | |||
| 52 | shader/debug_data.h | 50 | shader/debug_data.h |
| 53 | shader/shader.h | 51 | shader/shader.h |
| 54 | shader/shader_interpreter.h | 52 | shader/shader_interpreter.h |
| 55 | swrasterizer.h | 53 | swrasterizer/clipper.h |
| 54 | swrasterizer/rasterizer.h | ||
| 55 | swrasterizer/swrasterizer.h | ||
| 56 | texture/etc1.h | 56 | texture/etc1.h |
| 57 | texture/texture_decode.h | 57 | texture/texture_decode.h |
| 58 | utils.h | 58 | utils.h |
diff --git a/src/video_core/renderer_base.cpp b/src/video_core/renderer_base.cpp index fd38175b3..f6ece5c4b 100644 --- a/src/video_core/renderer_base.cpp +++ b/src/video_core/renderer_base.cpp | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | #include <memory> | 6 | #include <memory> |
| 7 | #include "video_core/renderer_base.h" | 7 | #include "video_core/renderer_base.h" |
| 8 | #include "video_core/renderer_opengl/gl_rasterizer.h" | 8 | #include "video_core/renderer_opengl/gl_rasterizer.h" |
| 9 | #include "video_core/swrasterizer.h" | 9 | #include "video_core/swrasterizer/swrasterizer.h" |
| 10 | #include "video_core/video_core.h" | 10 | #include "video_core/video_core.h" |
| 11 | 11 | ||
| 12 | void RendererBase::RefreshRasterizerSetting() { | 12 | void RendererBase::RefreshRasterizerSetting() { |
diff --git a/src/video_core/clipper.cpp b/src/video_core/swrasterizer/clipper.cpp index 1e8e751ba..2d80822d9 100644 --- a/src/video_core/clipper.cpp +++ b/src/video_core/swrasterizer/clipper.cpp | |||
| @@ -11,11 +11,11 @@ | |||
| 11 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| 12 | #include "common/logging/log.h" | 12 | #include "common/logging/log.h" |
| 13 | #include "common/vector_math.h" | 13 | #include "common/vector_math.h" |
| 14 | #include "video_core/clipper.h" | ||
| 15 | #include "video_core/pica_state.h" | 14 | #include "video_core/pica_state.h" |
| 16 | #include "video_core/pica_types.h" | 15 | #include "video_core/pica_types.h" |
| 17 | #include "video_core/rasterizer.h" | ||
| 18 | #include "video_core/shader/shader.h" | 16 | #include "video_core/shader/shader.h" |
| 17 | #include "video_core/swrasterizer/clipper.h" | ||
| 18 | #include "video_core/swrasterizer/rasterizer.h" | ||
| 19 | 19 | ||
| 20 | using Pica::Rasterizer::Vertex; | 20 | using Pica::Rasterizer::Vertex; |
| 21 | 21 | ||
diff --git a/src/video_core/clipper.h b/src/video_core/swrasterizer/clipper.h index b51af0af9..b51af0af9 100644 --- a/src/video_core/clipper.h +++ b/src/video_core/swrasterizer/clipper.h | |||
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/swrasterizer/rasterizer.cpp index 83a08ebd7..17ba59144 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/swrasterizer/rasterizer.cpp | |||
| @@ -18,11 +18,11 @@ | |||
| 18 | #include "video_core/debug_utils/debug_utils.h" | 18 | #include "video_core/debug_utils/debug_utils.h" |
| 19 | #include "video_core/pica_state.h" | 19 | #include "video_core/pica_state.h" |
| 20 | #include "video_core/pica_types.h" | 20 | #include "video_core/pica_types.h" |
| 21 | #include "video_core/rasterizer.h" | ||
| 22 | #include "video_core/regs_framebuffer.h" | 21 | #include "video_core/regs_framebuffer.h" |
| 23 | #include "video_core/regs_rasterizer.h" | 22 | #include "video_core/regs_rasterizer.h" |
| 24 | #include "video_core/regs_texturing.h" | 23 | #include "video_core/regs_texturing.h" |
| 25 | #include "video_core/shader/shader.h" | 24 | #include "video_core/shader/shader.h" |
| 25 | #include "video_core/swrasterizer/rasterizer.h" | ||
| 26 | #include "video_core/texture/texture_decode.h" | 26 | #include "video_core/texture/texture_decode.h" |
| 27 | #include "video_core/utils.h" | 27 | #include "video_core/utils.h" |
| 28 | 28 | ||
diff --git a/src/video_core/rasterizer.h b/src/video_core/swrasterizer/rasterizer.h index 3a72ac343..3a72ac343 100644 --- a/src/video_core/rasterizer.h +++ b/src/video_core/swrasterizer/rasterizer.h | |||
diff --git a/src/video_core/swrasterizer.cpp b/src/video_core/swrasterizer/swrasterizer.cpp index 9cd21f72b..402b705dd 100644 --- a/src/video_core/swrasterizer.cpp +++ b/src/video_core/swrasterizer/swrasterizer.cpp | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "video_core/clipper.h" | 5 | #include "video_core/swrasterizer/clipper.h" |
| 6 | #include "video_core/swrasterizer.h" | 6 | #include "video_core/swrasterizer/swrasterizer.h" |
| 7 | 7 | ||
| 8 | namespace VideoCore { | 8 | namespace VideoCore { |
| 9 | 9 | ||
diff --git a/src/video_core/swrasterizer.h b/src/video_core/swrasterizer/swrasterizer.h index 6d42d7409..6d42d7409 100644 --- a/src/video_core/swrasterizer.h +++ b/src/video_core/swrasterizer/swrasterizer.h | |||