From: Thomas Hindoe Paaboel Andersen Date: Sat, 28 May 2016 11:16:03 +0000 (+0200) Subject: i965: add missing return in if statement X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df210ff24dbdf9d3459061196e28dd37223c0cc5;p=mesa.git i965: add missing return in if statement Re-add the "return false" that was removed in 0c02d7002d6c005b4c1fe997b5ef5916978dd183 It seems that something went wrong when merging the patch. The patch sent to the mailing list does not directly match what was committed. https://lists.freedesktop.org/archives/mesa-dev/2016-May/118198.html Reviewed-by: Jason Ekstrand --- diff --git a/src/mesa/drivers/dri/i965/intel_blit.c b/src/mesa/drivers/dri/i965/intel_blit.c index 5a48c20d0a9..23e1ab62c4f 100644 --- a/src/mesa/drivers/dri/i965/intel_blit.c +++ b/src/mesa/drivers/dri/i965/intel_blit.c @@ -355,6 +355,7 @@ can_fast_copy_blit(struct brw_context *brw, */ if (src_tr_mode == INTEL_MIPTREE_TRMODE_NONE && dst_tr_mode == INTEL_MIPTREE_TRMODE_NONE) + return false; if (logic_op != GL_COPY) return false;