From: Lionel Landwerlin Date: Thu, 15 Mar 2018 12:11:15 +0000 (+0000) Subject: i965: pipecontrol: add LRI write immediate flag X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3e5d3955c1232aa405cf9ac3af65d4d377fd81a;p=mesa.git i965: pipecontrol: add LRI write immediate flag Signed-off-by: Lionel Landwerlin Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_pipe_control.h b/src/mesa/drivers/dri/i965/brw_pipe_control.h index 651cd4d3e70..4c58e16660f 100644 --- a/src/mesa/drivers/dri/i965/brw_pipe_control.h +++ b/src/mesa/drivers/dri/i965/brw_pipe_control.h @@ -34,6 +34,7 @@ struct brw_bo; * additional flushing control. */ #define _3DSTATE_PIPE_CONTROL (CMD_3D | (3 << 27) | (2 << 24)) +#define PIPE_CONTROL_LRI_WRITE_IMMEDIATE (1 << 23) /* Gen7+ */ #define PIPE_CONTROL_CS_STALL (1 << 20) #define PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET (1 << 19) #define PIPE_CONTROL_TLB_INVALIDATE (1 << 18)