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

  /external/mesa3d/src/gallium/auxiliary/draw/
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_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_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);
draw_pt.h 94 unsigned *max_vertices );
162 unsigned *max_vertices );
draw_pt_fetch_shade_pipeline_llvm.c 64 unsigned *max_vertices )
111 max_vertices );
113 *max_vertices = MAX2( *max_vertices, 4096 );
116 /* limit max fetches by limiting max_vertices */
117 *max_vertices = 4096;
121 *max_vertices = *max_vertices & ~1;
draw_pt_fetch_shade_pipeline.c 57 unsigned *max_vertices )
116 max_vertices );
118 *max_vertices = MAX2( *max_vertices, 4096 );
121 /* limit max fetches by limiting max_vertices */
122 *max_vertices = 4096;
draw_pt_vsplit_tmp.h 53 if (icount > vsplit->max_vertices)
234 assert(icount <= vsplit->max_vertices);
286 const unsigned max_count_simple = vsplit->max_vertices; \
draw_pt_emit.c 52 unsigned *max_vertices)
115 *max_vertices = (draw->render->max_vertex_buffer_bytes /
draw_pt_fetch_emit.c 93 unsigned *max_vertices )
178 *max_vertices = (draw->render->max_vertex_buffer_bytes /
draw_pt_fetch_shade_emit.c 72 unsigned *max_vertices)
168 *max_vertices = (draw->render->max_vertex_buffer_bytes /
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicGeometryShaderTests.cpp 707 const int max_vertices = m_pattern.size() == 2 ? std::max(m_pattern[0], m_pattern[1]) : m_pattern[0]; local
714 << "layout(triangle_strip, max_vertices = " << max_vertices << ") out;\n"
720 << " const highp float colWidth = 2.0 / float(" << max_vertices << ");\n";
831 src << "layout(triangle_strip, max_vertices = 128) out;\n"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_ureg.c 285 unsigned max_vertices)
287 ureg->property_gs_max_vertices = max_vertices;
    [all...]
tgsi_ureg.h 156 unsigned max_vertices);
    [all...]

Completed in 532 milliseconds