Browse Source
Merge pull request #10411 from scorpion81/gc-steamdeck-fix-attempt
Limit device access memory for integrated devices to 4 GB
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
|
@ -1034,7 +1034,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 - 8_GiB, 4_GiB), static_cast<s64>(local_memory))); |
|
|
|
std::min<s64>(available_memory - 8_GiB, 4_GiB), std::min<s64>(local_memory, 4_GiB))); |
|
|
|
} |
|
|
|
|
|
|
|
void Device::CollectToolingInfo() { |
|
|
|
|