summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_urb.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2006-09-14 10:37:09 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2006-09-14 10:37:09 +0000
commit657f738ea2fc6c758de9ad43e6d159972ca8ecef (patch)
tree1896e1af00459b4841f8bd560cb85a8c8ed19682 /src/mesa/drivers/dri/i965/brw_urb.c
parent6babf624b72a34b7be78bbc896bd241db98deb2e (diff)
downloadexternal_mesa3d-657f738ea2fc6c758de9ad43e6d159972ca8ecef.zip
external_mesa3d-657f738ea2fc6c758de9ad43e6d159972ca8ecef.tar.gz
external_mesa3d-657f738ea2fc6c758de9ad43e6d159972ca8ecef.tar.bz2
VS nr of urb entries is constrained to be one of a fixed set of values,
specifically {8,16,32}.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_urb.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_urb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_urb.c b/src/mesa/drivers/dri/i965/brw_urb.c
index b429304..79ff2b2 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 */
};