mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	rasterizer: Return zero'd vectors on error conditions.
This commit is contained in:
		
							parent
							
								
									692a74c09e
								
							
						
					
					
						commit
						44927f0306
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -90,7 +90,7 @@ static const Math::Vec4<u8> GetPixel(int x, int y) { | ||||||
|         UNIMPLEMENTED(); |         UNIMPLEMENTED(); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     return {}; |     return {0, 0, 0, 0}; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| static u32 GetDepth(int x, int y) { | static u32 GetDepth(int x, int y) { | ||||||
|  | @ -407,7 +407,7 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, | ||||||
|                     default: |                     default: | ||||||
|                         LOG_ERROR(HW_GPU, "Unknown color combiner source %d\n", (int)source); |                         LOG_ERROR(HW_GPU, "Unknown color combiner source %d\n", (int)source); | ||||||
|                         UNIMPLEMENTED(); |                         UNIMPLEMENTED(); | ||||||
|                         return {}; |                         return {0, 0, 0, 0}; | ||||||
|                     } |                     } | ||||||
|                 }; |                 }; | ||||||
| 
 | 
 | ||||||
|  | @ -524,7 +524,7 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, | ||||||
|                     default: |                     default: | ||||||
|                         LOG_ERROR(HW_GPU, "Unknown color combiner operation %d\n", (int)op); |                         LOG_ERROR(HW_GPU, "Unknown color combiner operation %d\n", (int)op); | ||||||
|                         UNIMPLEMENTED(); |                         UNIMPLEMENTED(); | ||||||
|                         return {}; |                         return {0, 0, 0}; | ||||||
|                     } |                     } | ||||||
|                 }; |                 }; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue