Searched refs:vert_count (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_push.c | 246 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()
|
D | nv50_program.h | 96 uint32_t vert_count; member
|
D | nv50_program.c | 420 prog->gp.vert_count = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nv50_program_translate()
|
D | nv50_shader_state.c | 272 PUSH_DATA (push, gp->gp.vert_count); in nv50_gmtyprog_validate()
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec_draw.c | 44 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()
|
D | vbo_save_api.c | 323 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 …]
|
D | vbo_exec_api.c | 69 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 …]
|
D | vbo_exec.h | 100 GLuint vert_count; /**< Number of vertices currently in buffer */ member
|
D | vbo_save.h | 166 GLuint vert_count; member
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_vbo_translate.c | 475 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/ |
D | vc4_draw.c | 38 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()
|