Home
last modified time | relevance | path

Searched refs:vert_count (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_push.c246 unsigned vert_count = info->count; in nv50_push_vbo() local
300 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count); in nv50_push_vbo()
301 vert_count /= targ->stride; in nv50_push_vbo()
328 emit_vertices_seq(&ctx, info->start, vert_count); in nv50_push_vbo()
331 emit_vertices_i08(&ctx, info->start, vert_count); in nv50_push_vbo()
334 emit_vertices_i16(&ctx, info->start, vert_count); in nv50_push_vbo()
337 emit_vertices_i32(&ctx, info->start, vert_count); in nv50_push_vbo()
Dnv50_program.h96 uint32_t vert_count; member
Dnv50_program.c420 prog->gp.vert_count = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nv50_program_translate()
Dnv50_shader_state.c272 PUSH_DATA (push, gp->gp.vert_count); in nv50_gmtyprog_validate()
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_draw.c44 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
410 exec->vtx.vert_count) { in vbo_exec_vtx_flush()
414 if (exec->vtx.copied.nr != exec->vtx.vert_count) { in vbo_exec_vtx_flush()
429 exec->vtx.vert_count); in vbo_exec_vtx_flush()
437 exec->vtx.vert_count - 1, in vbo_exec_vtx_flush()
459 exec->vtx.vert_count = 0; in vbo_exec_vtx_flush()
Dvbo_save_api.c323 save->vert_count = 0; in reset_counters()
392 save->vert_count++; in convert_line_loop_to_strip()
439 node->vertex_count = save->vert_count; in compile_vertex_list()
591 save->prims[i].count = (save->vert_count - save->prims[i].start); in wrap_buffers()
633 assert(save->max_vert - save->vert_count > save->copied.nr); in wrap_filled_vertex()
640 save->vert_count += save->copied.nr; in wrap_filled_vertex()
705 if (save->vert_count) in upgrade_vertex()
725 save->vert_count = 0; in upgrade_vertex()
788 save->vert_count += save->copied.nr; in upgrade_vertex()
879 if (++save->vert_count >= save->max_vert) \
[all …]
Dvbo_exec_api.c69 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
78 last_prim->count = exec->vtx.vert_count - last_prim->start; in vbo_exec_wrap_buffers()
101 if (exec->vtx.vert_count) in vbo_exec_wrap_buffers()
148 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); in vbo_exec_vtx_wrap()
155 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_vtx_wrap()
281 const GLint lastcount = exec->vtx.vert_count; in vbo_exec_wrap_upgrade_vertex()
324 exec->vtx.vert_count = 0; in vbo_exec_wrap_upgrade_vertex()
396 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_wrap_upgrade_vertex()
520 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \
642 if (exec->vtx.vert_count || unmap) { in vbo_exec_FlushVertices_internal()
[all …]
Dvbo_exec.h100 GLuint vert_count; /**< Number of vertices currently in buffer */ member
Dvbo_save.h166 GLuint vert_count; member
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_vbo_translate.c475 unsigned vert_count = info->count; in nvc0_push_vbo() local
518 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count); in nvc0_push_vbo()
519 vert_count /= targ->stride; in nvc0_push_vbo()
531 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count); in nvc0_push_vbo()
544 disp_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo()
547 disp_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo()
550 disp_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo()
554 disp_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_draw.c38 vc4_get_draw_cl_space(struct vc4_job *job, int vert_count) in vc4_get_draw_cl_space() argument
43 int num_draws = DIV_ROUND_UP(vert_count, 65535 - 2) + 1; in vc4_get_draw_cl_space()
273 vc4_hw_2116_workaround(struct pipe_context *pctx, int vert_count) in vc4_hw_2116_workaround() argument
278 if (job->draw_calls_queued + vert_count / 65535 >= VC4_HW_2116_COUNT) { in vc4_hw_2116_workaround()