Home
last modified time | relevance | path

Searched refs:freeSampler (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
Du_pstipple.c184 int freeSampler; /** an available sampler for the pstipple */ member
276 pctx->freeSampler = free_bit(pctx->samplersUsed); in pstip_transform_inst()
277 if (pctx->freeSampler >= PIPE_MAX_SAMPLERS) in pstip_transform_inst()
278 pctx->freeSampler = PIPE_MAX_SAMPLERS - 1; in pstip_transform_inst()
315 decl.Range.Last = pctx->freeSampler; in pstip_transform_inst()
381 newInst.Src[1].Register.Index = pctx->freeSampler; in pstip_transform_inst()
453 assert(transform.freeSampler < PIPE_MAX_SAMPLERS); in util_pstipple_create_fragment_shader()
454 *samplerUnitOut = transform.freeSampler; in util_pstipple_create_fragment_shader()
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_pstipple.c127 int freeSampler; /** an available sampler for the pstipple */ member
212 pctx->freeSampler = free_bit(pctx->samplersUsed); in pstip_transform_inst()
213 if (pctx->freeSampler >= PIPE_MAX_SAMPLERS) in pstip_transform_inst()
214 pctx->freeSampler = PIPE_MAX_SAMPLERS - 1; in pstip_transform_inst()
251 decl.Range.Last = pctx->freeSampler; in pstip_transform_inst()
315 newInst.Src[1].Register.Index = pctx->freeSampler; in pstip_transform_inst()
372 pstip->fs->sampler_unit = transform.freeSampler; in generate_pstip_fs()
Ddraw_pipe_aaline.c140 int freeSampler; /** an available sampler for the pstipple */ member
217 aactx->freeSampler = free_bit(aactx->samplersUsed); in aa_transform_inst()
218 if (aactx->freeSampler >= PIPE_MAX_SAMPLERS) in aa_transform_inst()
219 aactx->freeSampler = PIPE_MAX_SAMPLERS - 1; in aa_transform_inst()
253 decl.Range.Last = aactx->freeSampler; in aa_transform_inst()
288 newInst.Src[1].Register.Index = aactx->freeSampler; in aa_transform_inst()
384 aaline->fs->sampler_unit = transform.freeSampler; in generate_aaline_fs()