diff options
| author | bunnei <bunneidev@gmail.com> | 2023-05-06 00:40:10 -0700 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:06:00 -0700 |
| commit | 8dc7fe0c968ef110d987dea75bad30817035372c (patch) | |
| tree | d4ddb7bd8f4b29bb92169512ed1a2e072edf8dbf /src/video_core/vulkan_common | |
| parent | 1c9dae7cacda283634d6af5dba809195de9a75fa (diff) | |
android: video_core: Disable problematic compute shaders.
- Fixes #104.
Diffstat (limited to 'src/video_core/vulkan_common')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 3c9d11617..b692b4be4 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -500,6 +500,10 @@ public: } bool HasTimelineSemaphore() const { + if (GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY) { + // Timeline semaphores do not work properly on all Qualcomm drivers. + return false; + } return features.timeline_semaphore.timelineSemaphore; } |
