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

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_exec.c 114 unsigned int max_vertices = MIN2(MAX_TGSI_VERTICES, count - i); local
118 for (j = 0; j < max_vertices; j++) {
164 machine->NonHelperMask = (1 << max_vertices) - 1;
170 for (j = 0; j < max_vertices; j++) {
draw_pt_vsplit.c 47 unsigned max_vertices; member in struct:vsplit_frontend
228 middle->prepare(middle, vsplit->prim, opt, &vsplit->max_vertices);
230 vsplit->segment_size = MIN2(SEGMENT_SIZE, vsplit->max_vertices);
draw_pipe_vbuf.c 69 unsigned max_vertices; member in struct:vbuf_stage
112 if (vbuf->nr_vertices + nr > vbuf->max_vertices ||
350 vbuf->max_vertices = vbuf->nr_vertices = 0;
375 vbuf->max_vertices = vbuf->render->max_vertex_buffer_bytes / vbuf->vertex_size;
377 if(vbuf->max_vertices >= UNDEFINED_VERTEX_ID)
378 vbuf->max_vertices = UNDEFINED_VERTEX_ID - 1;
387 (ushort) vbuf->max_vertices);
  /external/mesa3d/src/compiler/nir/
nir_lower_gs_intrinsics.c 65 * if (vertex_count < max_vertices) {
79 nir_ssa_def *max_vertices = local
82 /* Create: if (vertex_count < max_vertices) and insert it.
88 if_stmt->condition = nir_src_for_ssa(nir_ilt(b, count, max_vertices));
  /external/mesa3d/src/mesa/main/
transformfeedback.c 475 unsigned max_vertices local
477 obj->GlesRemainingPrims = max_vertices / vertices_per_prim;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicGeometryShaderTests.cpp 691 const int max_vertices = m_pattern.size() == 2 ? std::max(m_pattern[0], m_pattern[1]) : m_pattern[0]; local
698 << "layout(triangle_strip, max_vertices = " << max_vertices << ") out;\n"
704 << " const highp float colWidth = 2.0 / float(" << max_vertices << ");\n";
815 src << "layout(triangle_strip, max_vertices = 128) out;\n"
    [all...]
  /external/mesa3d/src/compiler/glsl/
ast.h 546 unsigned max_vertices:1; member in struct:ast_type_qualifier::__anon27314::__anon27315
661 ast_layout_expression *max_vertices; member in struct:ast_type_qualifier
    [all...]

Completed in 2486 milliseconds