From: Kenneth Graunke Date: Sat, 30 Aug 2014 06:10:47 +0000 (-0700) Subject: i965: Fix GPU hangs when INTEL_DEBUG=no16 is set. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70691f0c283ec4e03523f3a4690d9b897b36872e;p=mesa.git i965: Fix GPU hangs when INTEL_DEBUG=no16 is set. The replicated data clear shader needs to be SIMD16, or else the GPU will hang. So, compile it even if INTEL_DEBUG=no16 is set. Signed-off-by: Kenneth Graunke Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index f52b7305b11..e700ef6e63a 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3411,7 +3411,8 @@ brw_wm_fs_emit(struct brw_context *brw, cfg_t *simd16_cfg = NULL; fs_visitor v2(brw, mem_ctx, key, prog_data, prog, fp, 16); - if (brw->gen >= 5 && likely(!(INTEL_DEBUG & DEBUG_NO16))) { + if (brw->gen >= 5 && likely(!(INTEL_DEBUG & DEBUG_NO16) || + brw->use_rep_send)) { if (!v.simd16_unsupported) { /* Try a SIMD16 compile */ v2.import_uniforms(&v);