mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
rsx: Do not apply texture remapping operations to "1" overrides.
This commit is contained in:
parent
e966289ddb
commit
bee14cad16
@ -2627,10 +2627,10 @@ namespace rsx
|
||||
return;
|
||||
}
|
||||
|
||||
if (remap_ctrl & 0x03) argb8_convert |= (mask & 0x1u) << bit_offset;
|
||||
if (remap_ctrl & 0x0C) argb8_convert |= (mask & 0x2u) << bit_offset;
|
||||
if (remap_ctrl & 0x30) argb8_convert |= (mask & 0x4u) << bit_offset;
|
||||
if (remap_ctrl & 0xC0) argb8_convert |= (mask & 0x8u) << bit_offset;
|
||||
if ((remap_ctrl & 0x03) == 0x02) argb8_convert |= (mask & 0x1u) << bit_offset;
|
||||
if ((remap_ctrl & 0x0C) == 0x08) argb8_convert |= (mask & 0x2u) << bit_offset;
|
||||
if ((remap_ctrl & 0x30) == 0x20) argb8_convert |= (mask & 0x4u) << bit_offset;
|
||||
if ((remap_ctrl & 0xC0) == 0x80) argb8_convert |= (mask & 0x8u) << bit_offset;
|
||||
};
|
||||
|
||||
if (argb8_signed)
|
||||
|
Loading…
Reference in New Issue
Block a user