Browse Source
Merge pull request #4016 from ReinUsesLisp/invocation-info
shader/other: Fix hardcoded value in S2R INVOCATION_INFO
pull/15/merge
LC
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/shader/decode/other.cpp
|
|
|
@ -83,7 +83,7 @@ u32 ShaderIR::DecodeOther(NodeBlock& bb, u32 pc) { |
|
|
|
return Operation(OperationCode::YNegate); |
|
|
|
case SystemVariable::InvocationInfo: |
|
|
|
LOG_WARNING(HW_GPU, "S2R instruction with InvocationInfo is incomplete"); |
|
|
|
return Immediate(0U); |
|
|
|
return Immediate(0x00ff'0000U); |
|
|
|
case SystemVariable::WscaleFactorXY: |
|
|
|
UNIMPLEMENTED_MSG("S2R WscaleFactorXY is not implemented"); |
|
|
|
return Immediate(0U); |
|
|
|
|