From e1bae36166b67996a30a325d96c1f3465d5f3986 Mon Sep 17 00:00:00 2001 From: JellySquid Date: Fri, 30 Aug 2024 15:10:22 -0500 Subject: [PATCH] Update Intel driver blacklist for framebuffer blits Drivers for Gen7 and Gen8 seem to be affected too, given user reports. --- .../sodium/client/compatibility/workarounds/Workarounds.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/workarounds/java/net/caffeinemc/mods/sodium/client/compatibility/workarounds/Workarounds.java b/common/src/workarounds/java/net/caffeinemc/mods/sodium/client/compatibility/workarounds/Workarounds.java index 798de1d46e..ed4cf40ed1 100644 --- a/common/src/workarounds/java/net/caffeinemc/mods/sodium/client/compatibility/workarounds/Workarounds.java +++ b/common/src/workarounds/java/net/caffeinemc/mods/sodium/client/compatibility/workarounds/Workarounds.java @@ -73,8 +73,8 @@ private static boolean checkIntelFramebufferBlitBug() { if (adapter instanceof D3DKMT.WDDMAdapterInfo wddmAdapterInfo) { @Nullable var driverName = wddmAdapterInfo.getOpenGlIcdName(); - // Intel OpenGL ICD for Generation 7.5 GPUs - if (driverName != null && driverName.matches("ig75icd(32|64)")) { + // Intel OpenGL ICD for legacy GPUs + if (driverName != null && driverName.matches("ig(7|75|8)icd(32|64)")) { return true; } }