mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
dri/nouveau: NV17_3D class is not available for NV1a chipset
Should fix https://bugs.freedesktop.org/show_bug.cgi?id=60510
Note: this is a candidate for the stable branches
Acked-by: Francisco Jerez <currojerez@riseup.net>
(cherry picked from commit f4ebcd133b)
This commit is contained in:
parent
7f0014f64a
commit
efd094d052
1 changed files with 1 additions and 1 deletions
|
|
@ -469,7 +469,7 @@ nv10_context_create(struct nouveau_screen *screen, const struct gl_config *visua
|
|||
goto fail;
|
||||
|
||||
/* 3D engine. */
|
||||
if (context_chipset(ctx) >= 0x17)
|
||||
if (context_chipset(ctx) >= 0x17 && context_chipset(ctx) != 0x1a)
|
||||
celsius_class = NV17_3D_CLASS;
|
||||
else if (context_chipset(ctx) >= 0x11)
|
||||
celsius_class = NV15_3D_CLASS;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue