On 07/09/2012 03:40 PM, Eric Anholt wrote:
[snip]
> @@ -1729,10 +1731,8 @@ fs_visitor::compute_to_mrf()
>            * into a compute-to-MRF.
>            */
>  
> +            /* SENDs can only write to GRFs, so no compute-to-MRF. */
>           if (scan_inst->is_tex()) {
> -            /* texturing writes several continuous regs, so we can't
> -             * compute-to-mrf that.
> -             */
>              break;
>           }

Based on your comment here, wouldn't it make more sense as

if (scan_inst->mlen)
   break;

?
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to