Home
last modified time | relevance | path

Searched refs:sample_key (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_tgsi_soa.c2084 unsigned sample_key = sampler_op << LP_SAMPLER_OP_TYPE_SHIFT; in emit_tex() local
2177 sample_key |= LP_SAMPLER_LOD_BIAS << LP_SAMPLER_LOD_CONTROL_SHIFT; in emit_tex()
2180 sample_key |= LP_SAMPLER_LOD_EXPLICIT << LP_SAMPLER_LOD_CONTROL_SHIFT; in emit_tex()
2187 sample_key |= (comp_val << LP_SAMPLER_GATHER_COMP_SHIFT); in emit_tex()
2216 sample_key |= LP_SAMPLER_SHADOW; in emit_tex()
2229 sample_key |= LP_SAMPLER_LOD_DERIVATIVES << LP_SAMPLER_LOD_CONTROL_SHIFT; in emit_tex()
2251 sample_key |= lod_property << LP_SAMPLER_LOD_PROPERTY_SHIFT; in emit_tex()
2256 sample_key |= LP_SAMPLER_OFFSETS; in emit_tex()
2263 params.sample_key = sample_key; in emit_tex()
2297 unsigned sample_key = sample_type << LP_SAMPLER_OP_TYPE_SHIFT; in emit_sample() local
[all …]
Dlp_bld_sample_soa.c3296 unsigned sample_key, in lp_build_sample_soa_code() argument
3327 (sample_key & LP_SAMPLER_LOD_PROPERTY_MASK) >> in lp_build_sample_soa_code()
3330 (sample_key & LP_SAMPLER_LOD_CONTROL_MASK) >> in lp_build_sample_soa_code()
3333 (sample_key & LP_SAMPLER_OP_TYPE_MASK) >> in lp_build_sample_soa_code()
3336 const boolean fetch_ms = !!(sample_key & LP_SAMPLER_FETCH_MS); in lp_build_sample_soa_code()
3519 bld.gather_comp = (sample_key & LP_SAMPLER_GATHER_COMP_MASK) >> LP_SAMPLER_GATHER_COMP_SHIFT; in lp_build_sample_soa_code()
3964 unsigned sample_key, in lp_build_sample_gen_func() argument
3985 lod_control = (sample_key & LP_SAMPLER_LOD_CONTROL_MASK) >> in lp_build_sample_gen_func()
3988 op_type = (sample_key & LP_SAMPLER_OP_TYPE_MASK) >> in lp_build_sample_gen_func()
4023 if (sample_key & LP_SAMPLER_SHADOW) { in lp_build_sample_gen_func()
[all …]
Dlp_bld_nir.c2287 unsigned sample_key = 0; in visit_tex() local
2303 sample_key |= LP_SAMPLER_OP_FETCH << LP_SAMPLER_OP_TYPE_SHIFT; in visit_tex()
2305 sample_key |= LP_SAMPLER_OP_GATHER << LP_SAMPLER_OP_TYPE_SHIFT; in visit_tex()
2306 sample_key |= (instr->component << LP_SAMPLER_GATHER_COMP_SHIFT); in visit_tex()
2308 sample_key |= LP_SAMPLER_OP_LODQ << LP_SAMPLER_OP_TYPE_SHIFT; in visit_tex()
2332 sample_key |= LP_SAMPLER_SHADOW; in visit_tex()
2337 sample_key |= LP_SAMPLER_LOD_BIAS << LP_SAMPLER_LOD_CONTROL_SHIFT; in visit_tex()
2342 sample_key |= LP_SAMPLER_LOD_EXPLICIT << LP_SAMPLER_LOD_CONTROL_SHIFT; in visit_tex()
2384 sample_key |= LP_SAMPLER_OFFSETS; in visit_tex()
2397 sample_key |= LP_SAMPLER_FETCH_MS; in visit_tex()
[all …]
Dlp_bld_sample.h111 unsigned sample_key; member