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

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vs_exec.c 111 unsigned int max_vertices = MIN2(MAX_TGSI_VERTICES, count - i); local
115 for (j = 0; j < max_vertices; j++) {
151 max_vertices > 1,
152 max_vertices > 2,
153 max_vertices > 3);
160 for (j = 0; j < max_vertices; j++) {
draw_vs_ppc.c 96 #define MAX_VERTICES 4
99 for (i = 0; i < count; i += MAX_VERTICES) {
100 const uint max_vertices = MIN2(MAX_VERTICES, count - i); local
110 for (vert = 0; vert < max_vertices; vert++) {
135 for (vert = 0; vert < max_vertices; vert++) {
150 input = (const float (*)[4])((const char *)input + input_stride * max_vertices);
151 output = (float (*)[4])((char *)output + output_stride * max_vertices);
draw_pipe_vbuf.c 69 unsigned max_vertices; member in struct:vbuf_stage
111 if (vbuf->nr_vertices + nr > vbuf->max_vertices ||
341 vbuf->max_vertices = vbuf->nr_vertices = 0;
366 vbuf->max_vertices = vbuf->render->max_vertex_buffer_bytes / vbuf->vertex_size;
368 if(vbuf->max_vertices >= UNDEFINED_VERTEX_ID)
369 vbuf->max_vertices = UNDEFINED_VERTEX_ID - 1;
378 (ushort) vbuf->max_vertices);
draw_pt_vsplit.c 45 unsigned max_vertices; member in struct:vsplit_frontend
175 middle->prepare(middle, vsplit->prim, opt, &vsplit->max_vertices);
177 vsplit->segment_size = MIN2(SEGMENT_SIZE, vsplit->max_vertices);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_exec.c 111 unsigned int max_vertices = MIN2(MAX_TGSI_VERTICES, count - i); local
115 for (j = 0; j < max_vertices; j++) {
151 max_vertices > 1,
152 max_vertices > 2,
153 max_vertices > 3);
160 for (j = 0; j < max_vertices; j++) {
draw_vs_ppc.c 96 #define MAX_VERTICES 4
99 for (i = 0; i < count; i += MAX_VERTICES) {
100 const uint max_vertices = MIN2(MAX_VERTICES, count - i); local
110 for (vert = 0; vert < max_vertices; vert++) {
135 for (vert = 0; vert < max_vertices; vert++) {
150 input = (const float (*)[4])((const char *)input + input_stride * max_vertices);
151 output = (float (*)[4])((char *)output + output_stride * max_vertices);
draw_pipe_vbuf.c 69 unsigned max_vertices; member in struct:vbuf_stage
111 if (vbuf->nr_vertices + nr > vbuf->max_vertices ||
341 vbuf->max_vertices = vbuf->nr_vertices = 0;
366 vbuf->max_vertices = vbuf->render->max_vertex_buffer_bytes / vbuf->vertex_size;
368 if(vbuf->max_vertices >= UNDEFINED_VERTEX_ID)
369 vbuf->max_vertices = UNDEFINED_VERTEX_ID - 1;
378 (ushort) vbuf->max_vertices);
draw_pt_vsplit.c 45 unsigned max_vertices; member in struct:vsplit_frontend
175 middle->prepare(middle, vsplit->prim, opt, &vsplit->max_vertices);
177 vsplit->segment_size = MIN2(SEGMENT_SIZE, vsplit->max_vertices);

Completed in 199 milliseconds