summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/nouveau
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2013-02-16 23:25:08 +0100
committerMarcin Slusarz <marcin.slusarz@gmail.com>2013-03-05 21:19:17 +0100
commitf4ebcd133b9c952fc57ce6d5df8bce8e2282d868 (patch)
tree308b6ad6301a45044e327121f720e5b82b22c605 /src/mesa/drivers/dri/nouveau
parentb9eb573600ff6d654bbc27d1fc5e935e5a74b071 (diff)
downloadexternal_mesa3d-f4ebcd133b9c952fc57ce6d5df8bce8e2282d868.zip
external_mesa3d-f4ebcd133b9c952fc57ce6d5df8bce8e2282d868.tar.gz
external_mesa3d-f4ebcd133b9c952fc57ce6d5df8bce8e2282d868.tar.bz2
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>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r--src/mesa/drivers/dri/nouveau/nv10_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nv10_context.c b/src/mesa/drivers/dri/nouveau/nv10_context.c
index 7eda4e0..4ffc4ef 100644
--- a/src/mesa/drivers/dri/nouveau/nv10_context.c
+++ b/src/mesa/drivers/dri/nouveau/nv10_context.c
@@ -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;