mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
rsx: Add missing SCB DIVSQ opcode support
Fix a lot of gfx glitches in SH3 HD
This commit is contained in:
parent
9fdc458d69
commit
3e5f0e5c37
1 changed files with 1 additions and 0 deletions
|
@ -376,6 +376,7 @@ bool FragmentProgramDecompiler::handle_scb(u32 opcode)
|
||||||
{
|
{
|
||||||
case RSX_FP_OPCODE_ADD: SetDst("($0 + $1)"); return true;
|
case RSX_FP_OPCODE_ADD: SetDst("($0 + $1)"); return true;
|
||||||
case RSX_FP_OPCODE_COS: SetDst("cos($0.xxxx)"); return true;
|
case RSX_FP_OPCODE_COS: SetDst("cos($0.xxxx)"); return true;
|
||||||
|
case RSX_FP_OPCODE_DIVSQ: SetDst("($0 / sqrt($1).xxxx)"); return true;
|
||||||
case RSX_FP_OPCODE_DP2: SetDst(getFunction(FUNCTION::FUNCTION_DP2)); return true;
|
case RSX_FP_OPCODE_DP2: SetDst(getFunction(FUNCTION::FUNCTION_DP2)); return true;
|
||||||
case RSX_FP_OPCODE_DP3: SetDst(getFunction(FUNCTION::FUNCTION_DP3)); return true;
|
case RSX_FP_OPCODE_DP3: SetDst(getFunction(FUNCTION::FUNCTION_DP3)); return true;
|
||||||
case RSX_FP_OPCODE_DP4: SetDst(getFunction(FUNCTION::FUNCTION_DP4)); return true;
|
case RSX_FP_OPCODE_DP4: SetDst(getFunction(FUNCTION::FUNCTION_DP4)); return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue