vk: Fix working buffer calculation for emulated D16F operations

This commit is contained in:
kd-11 2022-01-28 16:42:17 +03:00 committed by kd-11
commit d063f0b335

View file

@ -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
{ {