From: Keith Whitwell Date: Thu, 14 Sep 2006 10:37:09 +0000 (+0000) Subject: VS nr of urb entries is constrained to be one of a fixed set of values, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=657f738ea2fc6c758de9ad43e6d159972ca8ecef;p=mesa.git VS nr of urb entries is constrained to be one of a fixed set of values, specifically {8,16,32}. --- diff --git a/src/mesa/drivers/dri/i965/brw_urb.c b/src/mesa/drivers/dri/i965/brw_urb.c index b4293046474..79ff2b2d4db 100644 --- a/src/mesa/drivers/dri/i965/brw_urb.c +++ b/src/mesa/drivers/dri/i965/brw_urb.c @@ -53,9 +53,9 @@ static const struct { GLuint min_entry_size; GLuint max_entry_size; } limits[CS+1] = { - { 8, 24, 1, 5 }, /* vs */ + { 8, 32, 1, 5 }, /* vs */ { 4, 8, 1, 5 }, /* gs */ - { 6, 12, 1, 5 }, /* clp */ + { 6, 8, 1, 5 }, /* clp */ { 1, 8, 1, 12 }, /* sf */ { 1, 4, 1, 32 } /* cs */ };