HomeSort by relevance Sort by last modified time
    Searched refs:npush (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_vbo.c 349 unsigned npush = (count > mpush) ? mpush : count; local
350 unsigned wpush = ((npush + 255) & ~255) >> 8;
352 count -= npush;
355 while (npush >= 256) {
358 npush -= 256;
361 if (npush)
362 PUSH_DATA (push, ((npush - 1) << 24) | start);
381 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
382 count -= npush;
384 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
406 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
448 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
493 unsigned npush = (count > mpush) ? mpush : count; local
    [all...]
nv30_draw.c 150 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
151 count -= npush;
153 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
154 while (npush--) {
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_swtnl_t.c 203 unsigned npush, start = 0, count = swtnl->vertex_count; local
209 npush = get_max_vertices(ctx, NULL, PUSH_AVAIL(push));
210 npush = MIN2(npush / 12 * 12, count);
211 count -= npush;
213 if (!npush) {
219 EMIT_VBO(L, ctx, start, 0, npush);

Completed in 412 milliseconds