From 8be653164d7c64d8e463c5e95ed6b65d6eba3dcf Mon Sep 17 00:00:00 2001 From: Paul Berry Date: Tue, 13 Sep 2011 15:40:07 -0700 Subject: [PATCH] i965: Remove bogus assertion on MAX_CLIP_PLANES. This patch removes the assertion "MAX_CLIP_PLANES == 6" from the i965 driver. This assertion is unnecessary; nothing in the driver requires MAX_CLIP_PLANES to be 6. Reviewed-by: Kenneth Graunke Reviewed-by: Ian Romanick --- src/mesa/drivers/dri/i965/brw_curbe.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_curbe.c b/src/mesa/drivers/dri/i965/brw_curbe.c index b9a4beb1236..2ee2b464ed7 100644 --- a/src/mesa/drivers/dri/i965/brw_curbe.c +++ b/src/mesa/drivers/dri/i965/brw_curbe.c @@ -227,7 +227,6 @@ static void prepare_constant_buffer(struct brw_context *brw) /* Clip planes: _NEW_TRANSFORM plus _NEW_PROJECTION to get to * clip-space: */ - assert(MAX_CLIP_PLANES == 6); for (j = 0; j < MAX_CLIP_PLANES; j++) { if (ctx->Transform.ClipPlanesEnabled & (1<Transform._ClipUserPlane[j][0]; -- 2.11.0