mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
vk: Force GPU texture processing if the input is already GPU-resident (Tiled RCB read)
This commit is contained in:
parent
b6e9746198
commit
2a1af17f67
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ namespace vk
|
|||
// Only do GPU-side conversion if occupancy is good
|
||||
if (check_caps)
|
||||
{
|
||||
caps.supports_byteswap = (image_linear_size >= 1024);
|
||||
caps.supports_byteswap = (image_linear_size >= 1024) || (image_setup_flags & source_is_gpu_resident);
|
||||
caps.supports_hw_deswizzle = caps.supports_byteswap;
|
||||
caps.supports_zero_copy = caps.supports_byteswap;
|
||||
caps.supports_vtc_decoding = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue