HomeSort by relevance Sort by last modified time
    Searched defs:nr_indices (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_vbuf.c 75 unsigned nr_indices; member in struct:vbuf_stage
112 vbuf->nr_indices + nr > vbuf->max_indices)
163 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
178 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
191 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[0] );
325 if (vbuf->nr_indices)
329 vbuf->nr_indices );
331 vbuf->nr_indices = 0;
361 assert(!vbuf->nr_indices);
  /external/mesa3d/src/gallium/drivers/i915/
i915_prim_vbuf.c 454 unsigned nr_indices; local
456 nr_indices = draw_arrays_calc_nr_indices(nr, i915_render->fallback);
457 if (!nr_indices)
460 i915_vbuf_ensure_index_bounds(render, start + nr_indices);
468 if (!BEGIN_BATCH(1 + (nr_indices + 1)/2)) {
476 if (!BEGIN_BATCH(1 + (nr_indices + 1)/2)) {
486 nr_indices);
548 uint nr_indices,
558 for (i = 0; i + 1 < nr_indices; i += 2) {
561 if (i < nr_indices) {
    [all...]

Completed in 254 milliseconds