Searched refs:low_cond (Results 1 – 1 of 1) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
D | nir_conversion_builder.h | 362 nir_ssa_def *low_cond = NULL, *high_cond = NULL; in nir_clamp_to_type_range() local 365 low_cond = low ? nir_ilt(b, src, low) : NULL; in nir_clamp_to_type_range() 369 low_cond = low ? nir_ult(b, src, low) : NULL; in nir_clamp_to_type_range() 373 low_cond = low ? nir_fge(b, low, src) : NULL; in nir_clamp_to_type_range() 386 if (low_cond && val_low) in nir_clamp_to_type_range() 387 res = nir_bcsel(b, low_cond, val_low, res); in nir_clamp_to_type_range()
|