Browse Source
shader_conversion: I2F : add Assert for case src_size is Short
pull/15/merge
Nguyen Dac Nam
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/video_core/shader/decode/conversion.cpp
|
|
|
@ -86,6 +86,9 @@ u32 ShaderIR::DecodeConversion(NodeBlock& bb, u32 pc) { |
|
|
|
if (const u32 offset = static_cast<u32>(instr.conversion.int_src.selector); offset > 0) { |
|
|
|
ASSERT(instr.conversion.src_size == Register::Size::Byte || |
|
|
|
instr.conversion.src_size == Register::Size::Short); |
|
|
|
if (instr.conversion.src_size == Register::Size::Short) { |
|
|
|
ASSERT(offset == 0 || offset == 2); |
|
|
|
} |
|
|
|
value = SignedOperation(OperationCode::ILogicalShiftRight, input_signed, |
|
|
|
std::move(value), Immediate(offset * 8)); |
|
|
|
} |
|
|
|
|