Skip to content

Commit

Permalink
Update Intel driver blacklist for framebuffer blits
Browse files Browse the repository at this point in the history
Drivers for Gen7 and Gen8 seem to be affected too, given user reports.
  • Loading branch information
jellysquid3 committed Aug 30, 2024
1 parent 1ac46d0 commit e1bae36
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit e1bae36

Please sign in to comment.