From: Kenneth Graunke Date: Fri, 2 Aug 2013 07:11:10 +0000 (-0700) Subject: i965: Don't allocate curbe buffers on Gen6+. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59f22148b361a5e1c06d9f5b200666afa854473c;p=mesa.git i965: Don't allocate curbe buffers on Gen6+. These are only used on Gen4-5. Why waste the 8kB of space? Signed-off-by: Kenneth Graunke Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 1669a2330a4..a201eed6bb0 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -440,8 +440,10 @@ brwCreateContext(int api, brw_init_state( brw ); - brw->curbe.last_buf = calloc(1, 4096); - brw->curbe.next_buf = calloc(1, 4096); + if (brw->gen < 6) { + brw->curbe.last_buf = calloc(1, 4096); + brw->curbe.next_buf = calloc(1, 4096); + } brw->state.dirty.mesa = ~0; brw->state.dirty.brw = ~0;