diff options
author | Kenneth Graunke <[email protected]> | 2017-11-09 00:06:14 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-11-10 13:34:59 -0800 |
commit | b8d42cccd053e32ca048645ea7e6f901366e286d (patch) | |
tree | 674e2131202d8490f2e0891e763bf0e72dd1b65f /src/mesa | |
parent | ad9c2f5469deadea25b6781188acdebc3942df49 (diff) |
i965: Make L3 configuration atom listen for TCS/TES program updates.
The L3 configuration code already considers the TCS and TES programs,
but failed to listen for TCS/TES program changes.
This was somehow missing.
Fixes: e9644cb1f96ccf7e ("i965: Consider tessellation in get_pipeline_state_l3_weights.")
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen7_l3_state.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/gen7_l3_state.c b/src/mesa/drivers/dri/i965/gen7_l3_state.c index 0b2d61f9e0f..06559f5db70 100644 --- a/src/mesa/drivers/dri/i965/gen7_l3_state.c +++ b/src/mesa/drivers/dri/i965/gen7_l3_state.c @@ -263,6 +263,8 @@ const struct brw_tracked_state gen7_l3_state = { BRW_NEW_CS_PROG_DATA | BRW_NEW_FS_PROG_DATA | BRW_NEW_GS_PROG_DATA | + BRW_NEW_TCS_PROG_DATA | + BRW_NEW_TES_PROG_DATA | BRW_NEW_VS_PROG_DATA, }, .emit = emit_l3_state |