android: video_core: Disable problematic compute shaders.

- Fixes #104.
This commit is contained in:
bunnei 2023-05-06 00:40:10 -07:00
parent 053f0fb1fe
commit baa09b9cef
5 changed files with 17 additions and 5 deletions

View file

@ -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;
}