summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2006-08-03 16:03:50 -0700
committerEric Anholt <anholt@FreeBSD.org>2006-08-03 16:03:50 -0700
commitd56ffa5f35e3cf4262d66469052b2122fdb24027 (patch)
treee7753e50e30550f99b976fa4b944f428a1966016
parent4525379d95ff292d7322e1a7a516c0bedd1f7543 (diff)
Bump PS_MAX_THREADS to 32 now that the program doesn't fail.
-rw-r--r--src/i830_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c
index 7a426db6..107818bc 100644
--- a/src/i830_video.c
+++ b/src/i830_video.c
@@ -2695,7 +2695,7 @@ static const CARD32 sf_kernel_static[][4] = {
/* Our PS kernel uses less than 32 GRF registers (about 20) */
#define PS_KERNEL_NUM_GRF 32
-#define PS_MAX_THREADS 1
+#define PS_MAX_THREADS 32
#define BRW_GRF_BLOCKS(nreg) ((nreg + 15) / 16 - 1)