Work around MTLCounterSet crash on additional Intel Iris Plus Graphics devices.

Add 0x8a5a and 0x8a5c to list of Intel Iris Plus Graphics
device IDs requiring workaround.
This commit is contained in:
Bill Hollings 2022-11-15 17:44:55 -05:00
parent c8f581088f
commit 6d7f4330c7
2 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ MoltenVK 1.2.1
Released TBD
- Fix crash on descriptor update with out-of-bounds descriptor count data.
- Work around `MTLCounterSet` crash on additional Intel Iris Plus Graphics devices.

View File

@ -3168,6 +3168,8 @@ bool MVKPhysicalDevice::needsCounterSetRetained() {
case 0x8a51:
case 0x8a52:
case 0x8a53:
case 0x8a5a:
case 0x8a5c:
return true;
default:
return false;