Browse Source

clang-format fix

nce_cpp
Nguyen Dac Nam 6 years ago
committed by GitHub
parent
commit
84fc48b0eb
  1. 2
      src/video_core/shader/decode/conversion.cpp

2
src/video_core/shader/decode/conversion.cpp

@ -89,7 +89,7 @@ u32 ShaderIR::DecodeConversion(NodeBlock& bb, u32 pc) {
value = SignedOperation(OperationCode::ILogicalShiftRight, input_signed,
std::move(value), Immediate(offset * 8));
}
value = ConvertIntegerSize(value, instr.conversion.src_size, input_signed);
value = GetOperandAbsNegInteger(value, instr.conversion.abs_a, false, input_signed);
value = SignedOperation(OperationCode::FCastInteger, input_signed, PRECISE, value);

Loading…
Cancel
Save