HomeSort by relevance Sort by last modified time
    Searched refs:vert_count (Results 1 - 11 of 11) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_program.h 96 uint32_t vert_count; member in struct:nv50_program::__anon29648
nv50_push.c 246 unsigned vert_count = info->count; local
301 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count);
302 vert_count /= targ->stride;
329 emit_vertices_seq(&ctx, info->start, vert_count);
332 emit_vertices_i08(&ctx, info->start, vert_count);
335 emit_vertices_i16(&ctx, info->start, vert_count);
338 emit_vertices_i32(&ctx, info->start, vert_count);
nv50_program.c 415 prog->gp.vert_count = CLAMP(info->prop.gp.maxVertices, 1, 1024);
nv50_shader_state.c 269 PUSH_DATA (push, gp->gp.vert_count);
  /external/mesa3d/src/mesa/vbo/
vbo_exec_draw.c 45 GLuint count = exec->vtx.vert_count;
414 exec->vtx.vert_count) {
418 if (exec->vtx.copied.nr != exec->vtx.vert_count) {
435 exec->vtx.vert_count);
443 exec->vtx.vert_count - 1,
469 exec->vtx.vert_count = 0;
vbo_exec.h 100 GLuint vert_count; /**< Number of vertices currently in buffer */ member in struct:vbo_exec_context::__anon30645
vbo_exec_api.c 69 exec->vtx.vert_count = 0;
78 last_prim->count = exec->vtx.vert_count - last_prim->start;
101 if (exec->vtx.vert_count)
148 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr);
155 exec->vtx.vert_count += exec->vtx.copied.nr;
274 const GLint lastcount = exec->vtx.vert_count;
315 exec->vtx.vert_count = 0;
387 exec->vtx.vert_count += exec->vtx.copied.nr;
508 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \
630 if (exec->vtx.vert_count || unmap)
    [all...]
vbo_save.h 152 GLuint vert_count; member in struct:vbo_save_context
vbo_save_api.c 324 save->vert_count = 0;
393 save->vert_count++;
440 node->count = save->vert_count;
573 save->prim[i].count = (save->vert_count - save->prim[i].start);
615 assert(save->max_vert - save->vert_count > save->copied.nr);
622 save->vert_count += save->copied.nr;
687 if (save->vert_count)
707 save->vert_count = 0;
770 save->vert_count += save->copied.nr;
861 if (++save->vert_count >= save->max_vert)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_vbo_translate.c 474 unsigned vert_count = info->count; local
517 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count);
518 vert_count /= targ->stride;
530 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count);
543 disp_vertices_i08(&ctx, info->start, vert_count);
546 disp_vertices_i16(&ctx, info->start, vert_count);
549 disp_vertices_i32(&ctx, info->start, vert_count);
553 disp_vertices_seq(&ctx, info->start, vert_count);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_draw.c 38 vc4_get_draw_cl_space(struct vc4_job *job, int vert_count)
43 int num_draws = DIV_ROUND_UP(vert_count, 65535) + 1;
269 vc4_hw_2116_workaround(struct pipe_context *pctx, int vert_count)
274 if (job->draw_calls_queued + vert_count / 65535 >= VC4_HW_2116_COUNT) {

Completed in 212 milliseconds