From f4ebcd133b9c952fc57ce6d5df8bce8e2282d868 Mon Sep 17 00:00:00 2001 From: Marcin Slusarz Date: Sat, 16 Feb 2013 23:25:08 +0100 Subject: [PATCH] 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 --- src/mesa/drivers/dri/nouveau/nv10_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/nouveau/nv10_context.c b/src/mesa/drivers/dri/nouveau/nv10_context.c index 7eda4e0f917..4ffc4ef153f 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; -- 2.30.2