mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
rsx/fp: Fix typo
This commit is contained in:
parent
7dd349ae8e
commit
47060cdc5f
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ bool FragmentProgramDecompiler::handle_tex_srb(u32 opcode)
|
|||
//Unpack operations. See https://www.khronos.org/registry/OpenGL/extensions/NV/NV_fragment_program.txt
|
||||
case RSX_FP_OPCODE_UP2: SetDst("unpackHalf2x16(floatBitsToUint($0.x)).xyxy"); return true;
|
||||
case RSX_FP_OPCODE_UP4: SetDst("unpackSnorm4x8(floatBitsToUint($0.x))"); return true;
|
||||
case RSX_FP_OPCODE_UP16: SetDst("unpackSnormx16(floatBitsToUint($0.x)).xyxy"); return true;
|
||||
case RSX_FP_OPCODE_UP16: SetDst("unpackSnorm2x16(floatBitsToUint($0.x)).xyxy"); return true;
|
||||
case RSX_FP_OPCODE_UPG:
|
||||
//Same as UPB with gamma correction
|
||||
case RSX_FP_OPCODE_UPB: SetDst("(unpackUnorm4x8(floatBitsToUint($0.x)))"); return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue