Home
last modified time | relevance | path

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

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
Dnv50_push.c214 unsigned vert_count = info->count; in nv50_push_vbo() local
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); in nv50_push_vbo()
261 vert_count /= targ->stride; in nv50_push_vbo()
288 emit_vertices_seq(&ctx, info->start, vert_count); in nv50_push_vbo()
291 emit_vertices_i08(&ctx, info->start, vert_count); in nv50_push_vbo()
294 emit_vertices_i16(&ctx, info->start, vert_count); in nv50_push_vbo()
297 emit_vertices_i32(&ctx, info->start, vert_count); in nv50_push_vbo()
Dnv50_program.h91 uint8_t vert_count; member
Dnv50_shader_state.c203 PUSH_DATA (push, gp->gp.vert_count); in nv50_gmtyprog_validate()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_push.c214 unsigned vert_count = info->count; in nv50_push_vbo() local
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); in nv50_push_vbo()
261 vert_count /= targ->stride; in nv50_push_vbo()
288 emit_vertices_seq(&ctx, info->start, vert_count); in nv50_push_vbo()
291 emit_vertices_i08(&ctx, info->start, vert_count); in nv50_push_vbo()
294 emit_vertices_i16(&ctx, info->start, vert_count); in nv50_push_vbo()
297 emit_vertices_i32(&ctx, info->start, vert_count); in nv50_push_vbo()
Dnv50_program.h91 uint8_t vert_count; member
Dnv50_shader_state.c203 PUSH_DATA (push, gp->gp.vert_count); in nv50_gmtyprog_validate()
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
Dvbo_exec_draw.c47 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
166 const GLuint count = exec->vtx.vert_count; in vbo_exec_bind_arrays()
385 exec->vtx.vert_count) { in vbo_exec_vtx_flush()
389 if (exec->vtx.copied.nr != exec->vtx.vert_count) { in vbo_exec_vtx_flush()
406 exec->vtx.vert_count); in vbo_exec_vtx_flush()
414 exec->vtx.vert_count - 1, in vbo_exec_vtx_flush()
441 exec->vtx.vert_count = 0; in vbo_exec_vtx_flush()
Dvbo_save_api.c301 save->vert_count = 0; in _save_reset_counters()
334 node->count = save->vert_count; in _save_compile_vertex_list()
455 save->prim[i].count = (save->vert_count - save->prim[i].start); in _save_wrap_buffers()
497 assert(save->max_vert - save->vert_count > save->copied.nr); in _save_wrap_filled_vertex()
503 save->vert_count++; in _save_wrap_filled_vertex()
560 if (save->vert_count) in _save_upgrade_vertex()
579 save->vert_count = 0; in _save_upgrade_vertex()
641 save->vert_count += save->copied.nr; in _save_upgrade_vertex()
721 if (++save->vert_count >= save->max_vert) \
799 if (save->vert_count || save->prim_count) { in dlist_fallback()
[all …]
Dvbo_exec_api.c71 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
81 exec->vtx.prim[i].count = (exec->vtx.vert_count - in vbo_exec_wrap_buffers()
89 if (exec->vtx.vert_count) in vbo_exec_wrap_buffers()
134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); in vbo_exec_vtx_wrap()
141 exec->vtx.vert_count++; in vbo_exec_vtx_wrap()
243 const GLint lastcount = exec->vtx.vert_count; in vbo_exec_wrap_upgrade_vertex()
285 exec->vtx.vert_count = 0; in vbo_exec_wrap_upgrade_vertex()
356 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_wrap_upgrade_vertex()
437 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \
555 if (exec->vtx.vert_count || unmap) { in vbo_exec_FlushVertices_internal()
[all …]
Dvbo_exec.h100 GLuint vert_count; member
Dvbo_save.h151 GLuint vert_count; member
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_push.c303 unsigned vert_count = info->count; in nvc0_push_vbo() local
347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count); in nvc0_push_vbo()
348 vert_count /= targ->stride; in nvc0_push_vbo()
370 emit_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
373 emit_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo()
376 emit_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo()
379 emit_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo()
Dnvc0_vbo_translate.c435 unsigned vert_count = info->count; in nvc0_push_vbo() local
466 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); in nvc0_push_vbo()
467 vert_count /= targ->stride; in nvc0_push_vbo()
479 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count); in nvc0_push_vbo()
491 disp_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo()
494 disp_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo()
497 disp_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo()
501 disp_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
Dnvc0_push.c303 unsigned vert_count = info->count; in nvc0_push_vbo() local
347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count); in nvc0_push_vbo()
348 vert_count /= targ->stride; in nvc0_push_vbo()
370 emit_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
373 emit_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo()
376 emit_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo()
379 emit_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo()
Dnvc0_vbo_translate.c435 unsigned vert_count = info->count; in nvc0_push_vbo() local
466 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); in nvc0_push_vbo()
467 vert_count /= targ->stride; in nvc0_push_vbo()
479 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count); in nvc0_push_vbo()
491 disp_vertices_i08(&ctx, info->start, vert_count); in nvc0_push_vbo()
494 disp_vertices_i16(&ctx, info->start, vert_count); in nvc0_push_vbo()
497 disp_vertices_i32(&ctx, info->start, vert_count); in nvc0_push_vbo()
501 disp_vertices_seq(&ctx, info->start, vert_count); in nvc0_push_vbo()
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_draw.c47 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
166 const GLuint count = exec->vtx.vert_count; in vbo_exec_bind_arrays()
385 exec->vtx.vert_count) { in vbo_exec_vtx_flush()
389 if (exec->vtx.copied.nr != exec->vtx.vert_count) { in vbo_exec_vtx_flush()
406 exec->vtx.vert_count); in vbo_exec_vtx_flush()
414 exec->vtx.vert_count - 1, in vbo_exec_vtx_flush()
441 exec->vtx.vert_count = 0; in vbo_exec_vtx_flush()
Dvbo_save_api.c301 save->vert_count = 0; in _save_reset_counters()
334 node->count = save->vert_count; in _save_compile_vertex_list()
455 save->prim[i].count = (save->vert_count - save->prim[i].start); in _save_wrap_buffers()
497 assert(save->max_vert - save->vert_count > save->copied.nr); in _save_wrap_filled_vertex()
503 save->vert_count++; in _save_wrap_filled_vertex()
560 if (save->vert_count) in _save_upgrade_vertex()
579 save->vert_count = 0; in _save_upgrade_vertex()
641 save->vert_count += save->copied.nr; in _save_upgrade_vertex()
721 if (++save->vert_count >= save->max_vert) \
799 if (save->vert_count || save->prim_count) { in dlist_fallback()
[all …]
Dvbo_exec_api.c71 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
81 exec->vtx.prim[i].count = (exec->vtx.vert_count - in vbo_exec_wrap_buffers()
89 if (exec->vtx.vert_count) in vbo_exec_wrap_buffers()
134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); in vbo_exec_vtx_wrap()
141 exec->vtx.vert_count++; in vbo_exec_vtx_wrap()
243 const GLint lastcount = exec->vtx.vert_count; in vbo_exec_wrap_upgrade_vertex()
285 exec->vtx.vert_count = 0; in vbo_exec_wrap_upgrade_vertex()
356 exec->vtx.vert_count += exec->vtx.copied.nr; in vbo_exec_wrap_upgrade_vertex()
437 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \
555 if (exec->vtx.vert_count || unmap) { in vbo_exec_FlushVertices_internal()
[all …]
Dvbo_exec.h100 GLuint vert_count; member
Dvbo_save.h151 GLuint vert_count; member