Home
last modified time | relevance | path

Searched refs:cond_stack_size (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_tgsi_soa.c165 if (ctx->cond_stack_size > 0) in mask_has_cond()
182 ctx->cond_stack_size = 0; in lp_exec_mask_function_init()
272 if (ctx->cond_stack_size >= LP_MAX_TGSI_NESTING) { in lp_exec_mask_cond_push()
273 ctx->cond_stack_size++; in lp_exec_mask_cond_push()
276 if (ctx->cond_stack_size == 0 && mask->function_stack_size == 1) { in lp_exec_mask_cond_push()
279 ctx->cond_stack[ctx->cond_stack_size++] = mask->cond_mask; in lp_exec_mask_cond_push()
295 assert(ctx->cond_stack_size); in lp_exec_mask_cond_invert()
296 if (ctx->cond_stack_size >= LP_MAX_TGSI_NESTING) in lp_exec_mask_cond_invert()
298 prev_mask = ctx->cond_stack[ctx->cond_stack_size - 1]; in lp_exec_mask_cond_invert()
299 if (ctx->cond_stack_size == 1 && mask->function_stack_size == 1) { in lp_exec_mask_cond_invert()
[all …]
Dlp_bld_tgsi.h275 int cond_stack_size; member