From: Jason Ekstrand Date: Tue, 14 Apr 2015 23:57:24 +0000 (-0700) Subject: i965/eu: Add a devinfo parameter to brw_compile X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6219a8f098f4e18ff974db380e97a351c8e78906;p=mesa.git i965/eu: Add a devinfo parameter to brw_compile Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_eu.c b/src/mesa/drivers/dri/i965/brw_eu.c index c21d14de32b..ccd659e2fb3 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.c +++ b/src/mesa/drivers/dri/i965/brw_eu.c @@ -218,6 +218,7 @@ brw_init_compile(struct brw_context *brw, struct brw_compile *p, void *mem_ctx) memset(p, 0, sizeof(*p)); p->brw = brw; + p->devinfo = brw->intelScreen->devinfo; /* * Set the initial instruction store array size to 1024, if found that * isn't enough, then it will double the store size at brw_next_insn() diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index 31c1492315d..dc62cf0a516 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -70,6 +70,7 @@ struct brw_compile { bool single_program_flow; bool compressed; struct brw_context *brw; + const struct brw_device_info *devinfo; /* Control flow stacks: * - if_stack contains IF and ELSE instructions which must be patched