Module: Mesa Branch: master Commit: 1c5d4c9d74fb773dbbdfc99d4f570160a182e0da URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1c5d4c9d74fb773dbbdfc99d4f570160a182e0da
Author: Lionel Landwerlin <[email protected]> Date: Mon Jun 12 10:32:36 2017 +0100 i965: fix missing break Pretty obvious missing break statement. CID: 1412564 Fixes: 641405f797 "i965: Use the new tracking mechanism for HiZ" Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed by: Elie Tournier <[email protected]> --- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index eda8a0afab..bd816816a5 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -2300,6 +2300,7 @@ intel_miptree_finish_hiz_write(struct brw_context *brw, intel_miptree_set_aux_state(brw, mt, level, layer, 1, ISL_AUX_STATE_AUX_INVALID); } + break; case ISL_AUX_STATE_PASS_THROUGH: if (written_with_hiz) { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
