From: Timothy Arceri Date: Wed, 2 Jan 2019 05:00:12 +0000 (+1100) Subject: nir: simplify does_varying_match() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5122fbc4bad8e139463f5a36432673b29ddf52c5;p=mesa.git nir: simplify does_varying_match() Reviewed-by: Alejandro PiƱeiro --- diff --git a/src/compiler/nir/nir_linking_helpers.c b/src/compiler/nir/nir_linking_helpers.c index fa3ccaaa2da..f2e8ec94ad9 100644 --- a/src/compiler/nir/nir_linking_helpers.c +++ b/src/compiler/nir/nir_linking_helpers.c @@ -563,11 +563,8 @@ nir_link_xfb_varyings(nir_shader *producer, nir_shader *consumer) static bool does_varying_match(nir_variable *out_var, nir_variable *in_var) { - if (in_var->data.location == out_var->data.location && - in_var->data.location_frac == out_var->data.location_frac) - return true; - - return false; + return in_var->data.location == out_var->data.location && + in_var->data.location_frac == out_var->data.location_frac; } static nir_variable *