From: Francisco Jerez Date: Wed, 7 Sep 2016 20:32:25 +0000 (-0700) Subject: i965/fs: Simplify get_fpu_lowered_simd_width() by using inequalities instead of rounding. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3b7b90878770530ad3da44c6beb1401c40f1ffd6;p=mesa.git i965/fs: Simplify get_fpu_lowered_simd_width() by using inequalities instead of rounding. Reviewed-by: Iago Toral Quiroga --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 4c38b18483c..62b1c568f79 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -4599,8 +4599,8 @@ get_fpu_lowered_simd_width(const struct gen_device_info *devinfo, */ if (devinfo->gen < 8) { for (unsigned i = 0; i < inst->sources; i++) { - if (DIV_ROUND_UP(inst->size_written, REG_SIZE) == 2 && - inst->size_read(i) != 0 && DIV_ROUND_UP(inst->size_read(i), REG_SIZE) != 2 && + if (inst->size_written > REG_SIZE && + inst->size_read(i) != 0 && inst->size_read(i) <= REG_SIZE && !is_uniform(inst->src[i]) && !(type_sz(inst->dst.type) == 4 && inst->dst.stride == 1 && type_sz(inst->src[i].type) == 2 && inst->src[i].stride == 1)) {