mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-28 03:54:36 +00:00
16 lines
288 B
Diff
16 lines
288 B
Diff
--- /src/sna/sna_dri2.c
|
|
+++ /src/sna/sna_dri2.c
|
|
@@ -3707,8 +3707,10 @@
|
|
return has_i830_dri() ? "i830" : "i915";
|
|
else if (sna->kgem.gen < 040)
|
|
return "i915";
|
|
+ else if (sna->kgem.gen < 0100)
|
|
+ return "crocus";
|
|
else
|
|
- return "i965";
|
|
+ return "iris";
|
|
}
|
|
|
|
return s;
|
|
|