mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-02 22:30:39 +00:00
vk: Fix working buffer calculation for emulated D16F operations
This commit is contained in:
parent
781b2b4548
commit
d063f0b335
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ namespace vk
|
||||||
}
|
}
|
||||||
else if (aspect & VK_IMAGE_ASPECT_DEPTH_BIT)
|
else if (aspect & VK_IMAGE_ASPECT_DEPTH_BIT)
|
||||||
{
|
{
|
||||||
return base_size * 2;
|
return (base_size * 6) / 2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue