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 303 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count); in nv50_push_vbo() 304 vert_count /= targ->stride; in nv50_push_vbo() 331 emit_vertices_seq(&ctx, info->start, vert_count); in nv50_push_vbo() 334 emit_vertices_i08(&ctx, info->start, vert_count); in nv50_push_vbo() 337 emit_vertices_i16(&ctx, info->start, vert_count); in nv50_push_vbo() 340 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 | 435 prog->gp.vert_count = CLAMP(info_out.prop.gp.maxVertices, 1, 1024); in nv50_program_translate()
|
D | nv50_shader_state.c | 273 PUSH_DATA (push, gp->gp.vert_count); in nv50_gmtyprog_validate()
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec_draw.c | 46 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts() 305 exec->vtx.vert_count) { in vbo_exec_vtx_flush() 309 if (exec->vtx.copied.nr != exec->vtx.vert_count) { in vbo_exec_vtx_flush() 325 exec->vtx.vert_count); in vbo_exec_vtx_flush() 328 NULL, GL_TRUE, 0, exec->vtx.vert_count - 1, 1, 0, in vbo_exec_vtx_flush() 359 exec->vtx.vert_count = 0; in vbo_exec_vtx_flush()
|
D | vbo_exec_api.c | 80 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers() 89 last_prim->count = exec->vtx.vert_count - last_prim->start; in vbo_exec_wrap_buffers() 112 if (exec->vtx.vert_count) in vbo_exec_wrap_buffers() 159 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); in vbo_exec_vtx_wrap() 166 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_vtx_wrap() 258 const GLint lastcount = exec->vtx.vert_count; in vbo_exec_wrap_upgrade_vertex() 297 exec->vtx.vert_count = 0; in vbo_exec_wrap_upgrade_vertex() 401 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_wrap_upgrade_vertex() 557 if (unlikely(++exec->vtx.vert_count >= exec->vtx.max_vert)) \ 680 if (exec->vtx.vert_count) { in vbo_exec_FlushVertices_internal() [all …]
|
D | vbo_save_api.c | 274 save->vert_count = 0; in reset_counters() 342 save->vert_count++; in convert_line_loop_to_strip() 528 node->vertex_count = save->vert_count; in compile_vertex_list() 673 save->prims[i].count = (save->vert_count - save->prims[i].start); in wrap_buffers() 707 assert(save->max_vert - save->vert_count > save->copied.nr); in wrap_filled_vertex() 714 save->vert_count += save->copied.nr; in wrap_filled_vertex() 784 if (save->vert_count) in upgrade_vertex() 804 save->vert_count = 0; in upgrade_vertex() 867 save->vert_count += save->copied.nr; in upgrade_vertex() 975 if (++save->vert_count >= save->max_vert) \ [all …]
|
D | vbo.h | 103 GLuint vert_count; /**< Number of vertices currently in buffer */ member 164 GLuint vert_count; member
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_vbo_translate.c | 560 unsigned vert_count = info->count; in nvc0_push_vbo() local 603 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count); in nvc0_push_vbo() 604 vert_count /= targ->stride; in nvc0_push_vbo() 616 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count); in nvc0_push_vbo() 629 disp_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo() 632 disp_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo() 635 disp_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo() 639 disp_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_draw.c | 39 vc4_get_draw_cl_space(struct vc4_job *job, int vert_count) in vc4_get_draw_cl_space() argument 44 int num_draws = DIV_ROUND_UP(vert_count, 65535 - 2) + 1; in vc4_get_draw_cl_space() 276 vc4_hw_2116_workaround(struct pipe_context *pctx, int vert_count) in vc4_hw_2116_workaround() argument 281 if (job->draw_calls_queued + vert_count / 65535 >= VC4_HW_2116_COUNT) { in vc4_hw_2116_workaround()
|
/external/mesa3d/src/gallium/drivers/v3d/ |
D | v3dx_draw.c | 1350 uint32_t vert_count = so ? in v3d_draw_vbo() local 1357 prim.instance_length = vert_count; in v3d_draw_vbo() 1362 uint32_t vert_count = so ? in v3d_draw_vbo() local 1367 prim.length = vert_count; in v3d_draw_vbo()
|