Browse Source

[VK] Experiment with the memory allocations

pull/357/head
JPikachu 6 months ago
committed by crueter
parent
commit
91ebec9244
  1. 2
      src/video_core/vulkan_common/vulkan_device.cpp

2
src/video_core/vulkan_common/vulkan_device.cpp

@ -1393,7 +1393,7 @@ void Device::CollectPhysicalMemoryInfo() {
}
const s64 available_memory = static_cast<s64>(device_access_memory - device_initial_usage);
device_access_memory = static_cast<u64>(std::max<s64>(
std::min<s64>(available_memory - 4_GiB, 6_GiB), std::min<s64>(local_memory, 6_GiB)));
std::min<s64>(available_memory - 6_GiB, 3_GiB), std::min<s64>(local_memory, 3_GiB)));
}
void Device::CollectToolingInfo() {

Loading…
Cancel
Save