Module: Mesa Branch: master Commit: 608a65ebca27668ad060c0735e9209c3fef12d31 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=608a65ebca27668ad060c0735e9209c3fef12d31
Author: Kenneth Graunke <[email protected]> Date: Sun May 7 22:59:38 2017 -0700 i965: Drop BRW_NEW_PUSH_CONSTANT_ALLOCATION from Gen6 code. Gen6 doesn't have a configurable push constant region. This is only used on Gen7+. Reviewed-by: Topi Pohjolainen <[email protected]> --- src/mesa/drivers/dri/i965/genX_state_upload.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index f3a7e72a37..6619d4d7ab 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -1685,9 +1685,7 @@ static const struct brw_tracked_state genX(wm_state) = { (GEN_GEN < 7 ? _NEW_PROGRAM_CONSTANTS : 0), .brw = BRW_NEW_BLORP | BRW_NEW_FS_PROG_DATA | - (GEN_GEN < 7 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION | - BRW_NEW_BATCH - : BRW_NEW_CONTEXT), + (GEN_GEN < 7 ? BRW_NEW_BATCH : BRW_NEW_CONTEXT), }, .emit = genX(upload_wm), }; @@ -1804,9 +1802,7 @@ static const struct brw_tracked_state genX(vs_state) = { BRW_NEW_BLORP | BRW_NEW_CONTEXT | BRW_NEW_VS_PROG_DATA | - (GEN_GEN < 7 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION | - BRW_NEW_VERTEX_PROGRAM - : 0), + (GEN_GEN < 7 ? BRW_NEW_VERTEX_PROGRAM : 0), }, .emit = genX(upload_vs_state), }; @@ -2183,9 +2179,7 @@ static const struct brw_tracked_state genX(gs_state) = { BRW_NEW_CONTEXT | BRW_NEW_GEOMETRY_PROGRAM | BRW_NEW_GS_PROG_DATA | - (GEN_GEN < 7 ? BRW_NEW_FF_GS_PROG_DATA | - BRW_NEW_PUSH_CONSTANT_ALLOCATION - : 0), + (GEN_GEN < 7 ? BRW_NEW_FF_GS_PROG_DATA : 0), }, .emit = genX(upload_gs_state), }; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
