mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 12:19:59 +00:00
shader_decode: SULD.D fix decode SNORM component
This commit is contained in:
parent
69657ff19c
commit
6f2b7087c2
1 changed files with 9 additions and 10 deletions
|
@ -350,25 +350,24 @@ u32 ShaderIR::DecodeImage(NodeBlock& bb, u32 pc) {
|
|||
Node converted_value = [&] {
|
||||
switch (component_type) {
|
||||
case ComponentType::SNORM: {
|
||||
is_signed = true;
|
||||
// range [-1.0, 1.0]
|
||||
auto cnv_value =
|
||||
Operation(OperationCode::FAdd, original_value, Immediate(1.f));
|
||||
cnv_value = Operation(OperationCode::FMul, std::move(cnv_value),
|
||||
Immediate(127.f));
|
||||
is_signed = false;
|
||||
return SignedOperation(OperationCode::ICastFloat, is_signed,
|
||||
std::move(cnv_value));
|
||||
auto cnv_value = Operation(OperationCode::FMul, original_value, Immediate(127.f));
|
||||
cnv_value = SignedOperation(OperationCode::ICastFloat, is_signed,
|
||||
std::move(cnv_value));
|
||||
return BitfieldExtract(std::move(cnv_value), 0, 8);
|
||||
}
|
||||
case ComponentType::UNORM: {
|
||||
is_signed = false;
|
||||
// range [0.0, 1.0]
|
||||
auto cnv_value =
|
||||
Operation(OperationCode::FMul, original_value, Immediate(255.f));
|
||||
is_signed = false;
|
||||
return SignedOperation(OperationCode::ICastFloat, is_signed,
|
||||
std::move(cnv_value));
|
||||
}
|
||||
case ComponentType::SINT: // range [-128,128]
|
||||
return Operation(OperationCode::IAdd, original_value, Immediate(128));
|
||||
case ComponentType::SINT: // range [-128,127]
|
||||
is_signed = true;
|
||||
return original_value;
|
||||
case ComponentType::UINT: // range [0, 255]
|
||||
is_signed = false;
|
||||
return original_value;
|
||||
|
|
Loading…
Reference in a new issue