mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	debugger/shader: fix inverted uniform flow control
This commit is contained in:
		
							parent
							
								
									822e8d21ea
								
							
						
					
					
						commit
						98cd5164c5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -255,7 +255,7 @@ QVariant GraphicsVertexShaderModel::data(const QModelIndex& index, int role) con | ||||||
|                         output << '('; |                         output << '('; | ||||||
| 
 | 
 | ||||||
|                         if (instr.flow_control.op != instr.flow_control.JustY) { |                         if (instr.flow_control.op != instr.flow_control.JustY) { | ||||||
|                             if (instr.flow_control.refx) |                             if (!instr.flow_control.refx) | ||||||
|                                 output << '!'; |                                 output << '!'; | ||||||
|                             output << "cc.x"; |                             output << "cc.x"; | ||||||
|                         } |                         } | ||||||
|  | @ -267,7 +267,7 @@ QVariant GraphicsVertexShaderModel::data(const QModelIndex& index, int role) con | ||||||
|                         } |                         } | ||||||
| 
 | 
 | ||||||
|                         if (instr.flow_control.op != instr.flow_control.JustX) { |                         if (instr.flow_control.op != instr.flow_control.JustX) { | ||||||
|                             if (instr.flow_control.refy) |                             if (!instr.flow_control.refy) | ||||||
|                                 output << '!'; |                                 output << '!'; | ||||||
|                             output << "cc.y"; |                             output << "cc.y"; | ||||||
|                         } |                         } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue