Browse Source
Merge pull request #12153 from liamwhite/deck2
renderer_vulkan: exclude steam deck oled from force max clock setting
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
|
@ -869,7 +869,8 @@ bool Device::ShouldBoostClocks() const { |
|
|
|
driver_id == VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA || |
|
|
|
driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY || driver_id == VK_DRIVER_ID_MESA_TURNIP; |
|
|
|
|
|
|
|
const bool is_steam_deck = vendor_id == 0x1002 && device_id == 0x163F; |
|
|
|
const bool is_steam_deck = (vendor_id == 0x1002 && device_id == 0x163F) || |
|
|
|
(vendor_id == 0x1002 && device_id == 0x1435); |
|
|
|
|
|
|
|
const bool is_debugging = this->HasDebuggingToolAttached(); |
|
|
|
|
|
|
|
|