Module: Mesa Branch: master Commit: 9871bde351103848f1c18a52e5d56e4b989197e8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9871bde351103848f1c18a52e5d56e4b989197e8
Author: Kenneth Graunke <[email protected]> Date: Tue Dec 6 02:50:21 2016 -0800 i965: Drop redundant key->outputs_written initialization. This was already set to the same value earlier. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]> --- src/mesa/drivers/dri/i965/brw_tcs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_tcs.c b/src/mesa/drivers/dri/i965/brw_tcs.c index 95926db..76cd0a5 100644 --- a/src/mesa/drivers/dri/i965/brw_tcs.c +++ b/src/mesa/drivers/dri/i965/brw_tcs.c @@ -344,8 +344,6 @@ brw_tcs_populate_key(struct brw_context *brw, /* _NEW_TEXTURE */ brw_populate_sampler_prog_key_data(&brw->ctx, &tcp->program, &key->tex); - } else { - key->outputs_written = tes_prog->info.inputs_read; } } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
