/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_push.c | 214 unsigned vert_count = info->count; local 260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); 261 vert_count /= targ->stride; 288 emit_vertices_seq(&ctx, info->start, vert_count); 291 emit_vertices_i08(&ctx, info->start, vert_count); 294 emit_vertices_i16(&ctx, info->start, vert_count); 297 emit_vertices_i32(&ctx, info->start, vert_count);
|
nv50_program.h | 91 uint8_t vert_count; member in struct:nv50_program::__anon19096
|
nv50_shader_state.c | 203 PUSH_DATA (push, gp->gp.vert_count);
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_push.c | 303 unsigned vert_count = info->count; local 347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count); 348 vert_count /= targ->stride; 370 emit_vertices_seq(&ctx, info->start, vert_count); 373 emit_vertices_i08(&ctx, info->start, vert_count); 376 emit_vertices_i16(&ctx, info->start, vert_count); 379 emit_vertices_i32(&ctx, info->start, vert_count);
|
nvc0_vbo_translate.c | 435 unsigned vert_count = info->count; local 466 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); 467 vert_count /= targ->stride; 479 ctx.dest = nvc0_push_setup_vertex_array(nvc0, vert_count); 491 disp_vertices_i08(&ctx, info->start, vert_count); 494 disp_vertices_i16(&ctx, info->start, vert_count); 497 disp_vertices_i32(&ctx, info->start, vert_count); 501 disp_vertices_seq(&ctx, info->start, vert_count);
|
/external/mesa3d/src/mesa/vbo/ |
vbo_exec_draw.c | 47 GLuint count = exec->vtx.vert_count; 166 const GLuint count = exec->vtx.vert_count; 385 exec->vtx.vert_count) { 389 if (exec->vtx.copied.nr != exec->vtx.vert_count) { 406 exec->vtx.vert_count); 414 exec->vtx.vert_count - 1, 441 exec->vtx.vert_count = 0;
|
vbo_exec.h | 100 GLuint vert_count; member in struct:vbo_exec_context::__anon19839
|
vbo_save.h | 151 GLuint vert_count; member in struct:vbo_save_context
|
vbo_save_api.c | 301 save->vert_count = 0; 334 node->count = save->vert_count; 455 save->prim[i].count = (save->vert_count - save->prim[i].start); 497 assert(save->max_vert - save->vert_count > save->copied.nr); 503 save->vert_count++; 560 if (save->vert_count) 579 save->vert_count = 0; 641 save->vert_count += save->copied.nr; 721 if (++save->vert_count >= save->max_vert) \ 799 if (save->vert_count || save->prim_count) [all...] |
vbo_exec_api.c | 71 exec->vtx.vert_count = 0; 81 exec->vtx.prim[i].count = (exec->vtx.vert_count - 89 if (exec->vtx.vert_count) 134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); 141 exec->vtx.vert_count++; 243 const GLint lastcount = exec->vtx.vert_count; 285 exec->vtx.vert_count = 0; 356 exec->vtx.vert_count += exec->vtx.copied.nr; 437 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \ 555 if (exec->vtx.vert_count || unmap) [all...] |