[vk, qcom] Revert Push Descriptors Threshold due to data corruption

This commit is contained in:
CamilleLaVey 2025-11-15 14:14:37 -04:00
parent af073f13cf
commit 6fe1f86984

View file

@ -33,14 +33,6 @@ public:
if (num_descriptors > device->MaxPushDescriptors()) {
return false;
}
// Qualcomm has slow push descriptor implementation - use conservative threshold
// Prefer descriptor pools for complex shaders (>8 descriptors)
const bool is_qualcomm = device->GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY;
if (is_qualcomm && num_descriptors > 8) {
return false;
}
return true;
}