Searched refs:high_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 366 high_cond = high ? nir_ilt(b, high, src) : NULL; in nir_clamp_to_type_range() 370 high_cond = high ? nir_ult(b, high, src) : NULL; in nir_clamp_to_type_range() 374 high_cond = high ? nir_fge(b, src, high) : NULL; in nir_clamp_to_type_range() 388 if (high_cond && val_high) in nir_clamp_to_type_range() 389 res = nir_bcsel(b, high_cond, val_high, res); in nir_clamp_to_type_range()
|