mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	VideoCore: Move software rasterizer files to sub-directory
This commit is contained in:
		
							parent
							
								
									e10b11a5d0
								
							
						
					
					
						commit
						e24717bca0
					
				
					 8 changed files with 12 additions and 12 deletions
				
			
		|  | @ -1,10 +1,8 @@ | |||
| set(SRCS | ||||
|             clipper.cpp | ||||
|             command_processor.cpp | ||||
|             debug_utils/debug_utils.cpp | ||||
|             pica.cpp | ||||
|             primitive_assembly.cpp | ||||
|             rasterizer.cpp | ||||
|             regs.cpp | ||||
|             renderer_base.cpp | ||||
|             renderer_opengl/gl_rasterizer.cpp | ||||
|  | @ -15,7 +13,9 @@ set(SRCS | |||
|             renderer_opengl/renderer_opengl.cpp | ||||
|             shader/shader.cpp | ||||
|             shader/shader_interpreter.cpp | ||||
|             swrasterizer.cpp | ||||
|             swrasterizer/clipper.cpp | ||||
|             swrasterizer/rasterizer.cpp | ||||
|             swrasterizer/swrasterizer.cpp | ||||
|             texture/etc1.cpp | ||||
|             texture/texture_decode.cpp | ||||
|             vertex_loader.cpp | ||||
|  | @ -23,7 +23,6 @@ set(SRCS | |||
|             ) | ||||
| 
 | ||||
| set(HEADERS | ||||
|             clipper.h | ||||
|             command_processor.h | ||||
|             debug_utils/debug_utils.h | ||||
|             gpu_debugger.h | ||||
|  | @ -31,7 +30,6 @@ set(HEADERS | |||
|             pica_state.h | ||||
|             pica_types.h | ||||
|             primitive_assembly.h | ||||
|             rasterizer.h | ||||
|             rasterizer_interface.h | ||||
|             regs.h | ||||
|             regs_framebuffer.h | ||||
|  | @ -52,7 +50,9 @@ set(HEADERS | |||
|             shader/debug_data.h | ||||
|             shader/shader.h | ||||
|             shader/shader_interpreter.h | ||||
|             swrasterizer.h | ||||
|             swrasterizer/clipper.h | ||||
|             swrasterizer/rasterizer.h | ||||
|             swrasterizer/swrasterizer.h | ||||
|             texture/etc1.h | ||||
|             texture/texture_decode.h | ||||
|             utils.h | ||||
|  |  | |||
|  | @ -6,7 +6,7 @@ | |||
| #include <memory> | ||||
| #include "video_core/renderer_base.h" | ||||
| #include "video_core/renderer_opengl/gl_rasterizer.h" | ||||
| #include "video_core/swrasterizer.h" | ||||
| #include "video_core/swrasterizer/swrasterizer.h" | ||||
| #include "video_core/video_core.h" | ||||
| 
 | ||||
| void RendererBase::RefreshRasterizerSetting() { | ||||
|  |  | |||
|  | @ -11,11 +11,11 @@ | |||
| #include "common/common_types.h" | ||||
| #include "common/logging/log.h" | ||||
| #include "common/vector_math.h" | ||||
| #include "video_core/clipper.h" | ||||
| #include "video_core/pica_state.h" | ||||
| #include "video_core/pica_types.h" | ||||
| #include "video_core/rasterizer.h" | ||||
| #include "video_core/shader/shader.h" | ||||
| #include "video_core/swrasterizer/clipper.h" | ||||
| #include "video_core/swrasterizer/rasterizer.h" | ||||
| 
 | ||||
| using Pica::Rasterizer::Vertex; | ||||
| 
 | ||||
|  | @ -18,11 +18,11 @@ | |||
| #include "video_core/debug_utils/debug_utils.h" | ||||
| #include "video_core/pica_state.h" | ||||
| #include "video_core/pica_types.h" | ||||
| #include "video_core/rasterizer.h" | ||||
| #include "video_core/regs_framebuffer.h" | ||||
| #include "video_core/regs_rasterizer.h" | ||||
| #include "video_core/regs_texturing.h" | ||||
| #include "video_core/shader/shader.h" | ||||
| #include "video_core/swrasterizer/rasterizer.h" | ||||
| #include "video_core/texture/texture_decode.h" | ||||
| #include "video_core/utils.h" | ||||
| 
 | ||||
|  | @ -2,8 +2,8 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "video_core/clipper.h" | ||||
| #include "video_core/swrasterizer.h" | ||||
| #include "video_core/swrasterizer/clipper.h" | ||||
| #include "video_core/swrasterizer/swrasterizer.h" | ||||
| 
 | ||||
| namespace VideoCore { | ||||
| 
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue