HomeSort by: relevance | last modified time | path
    Searched refs:current_batch_idx (Results 1 - 2 of 2) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_context.h 160 unsigned current_batch_idx; member in struct:d3d12_context
245 assert(ctx->current_batch_idx < ARRAY_SIZE(ctx->batches));
246 return ctx->batches + ctx->current_batch_idx;
250 unsigned oldest = (ctx->current_batch_idx + 1) % ARRAY_SIZE(ctx->batches); \
251 while (ctx->batches[oldest].fence == NULL && oldest != ctx->current_batch_idx) \
254 for (; oldest != ctx->current_batch_idx; \
d3d12_context.cpp 1585 ctx->current_batch_idx++;
1586 if (ctx->current_batch_idx == ARRAY_SIZE(ctx->batches))
1587 ctx->current_batch_idx = 0;

Completed in 23 milliseconds