diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2006-09-07 16:29:37 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2006-09-07 16:29:37 +0000 |
commit | e48db4430fe850cbaf55f2ea5c142ecea3c2a48b (patch) | |
tree | d4c7876660f808782ce8c424f7eca6c7674bcbe4 /src/mesa/drivers/dri/i965/brw_state_pool.c | |
parent | 1456a0fff6a68dac046aaa57585eadf65ad66892 (diff) |
Fix glitch with pool alignments.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_state_pool.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state_pool.c b/src/mesa/drivers/dri/i965/brw_state_pool.c index 2b469638cf..d905da8000 100644 --- a/src/mesa/drivers/dri/i965/brw_state_pool.c +++ b/src/mesa/drivers/dri/i965/brw_state_pool.c @@ -95,7 +95,7 @@ static void brw_init_pool( struct brw_context *brw, pool->size = size; pool->brw = brw; - bmGenBuffers(&brw->intel, "pool", 1, &pool->buffer, 0); + bmGenBuffers(&brw->intel, "pool", 1, &pool->buffer, 12); /* Also want to say not to wait on fences when data is presented */ |