mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-28 22:49:02 -05:00 
			
		
		
		
	shader_decode: Fixup XMAD
This commit is contained in:
		| @@ -55,7 +55,7 @@ u32 ShaderIR::DecodeXmad(BasicBlock& bb, const BasicBlock& code, u32 pc) { | ||||
|     // TODO(Rodrigo): Use an appropiate sign for this operation | ||||
|     Node product = Operation(OperationCode::IMul, NO_PRECISE, op_a, op_b); | ||||
|     if (instr.xmad.product_shift_left) { | ||||
|         product = Operation(OperationCode::ILogicalShiftLeft, NO_PRECISE, op_a, Immediate(16)); | ||||
|         product = Operation(OperationCode::ILogicalShiftLeft, NO_PRECISE, product, Immediate(16)); | ||||
|     } | ||||
|  | ||||
|     op_c = [&]() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ReinUsesLisp
					ReinUsesLisp