Lines Matching defs:hw_mask
63 u_index_prim_type_convert(unsigned hw_mask, enum pipe_prim_type prim, bool pv_matches)
65 if ((hw_mask & (1<<prim)) && pv_matches)
108 * \param hw_mask mask of (1 << PIPE_PRIM_x) flags indicating which types
122 u_index_translator(unsigned hw_mask,
148 if ((hw_mask & (1<<prim)) &&
164 *out_prim = u_index_prim_type_convert(hw_mask, prim, in_pv == out_pv);
165 *out_nr = u_index_count_converted_indices(hw_mask, in_pv == out_pv, prim, nr);
171 u_index_count_converted_indices(unsigned hw_mask, bool pv_matches, enum pipe_prim_type prim, unsigned nr)
173 if ((hw_mask & (1<<prim)) && pv_matches)
224 * \param hw_mask a bitmask of (1 << PIPE_PRIM_x) values that indicates
237 u_index_generator(unsigned hw_mask,
254 *out_prim = u_index_prim_type_convert(hw_mask, prim, in_pv == out_pv);
255 *out_nr = u_index_count_converted_indices(hw_mask, in_pv == out_pv, prim, nr);
257 if ((hw_mask & (1<<prim)) &&