Home
last modified time | relevance | path

Searched refs:max_vertices (Results 1 – 25 of 106) sorted by relevance

12345

/external/deqp-deps/glslang/Test/baseResults/
Dcontradict_0.geom.out4 max_vertices = 4
22 max_vertices = 6
37 ERROR: Linking geometry stage: Contradictory layout max_vertices values
43 max_vertices = 4
Dmains1.frag.out22 max_vertices = -1
33 max_vertices = -1
47 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value)
57 max_vertices = -1
Dmax_vertices_0.geom.out4 max_vertices = 0
23 max_vertices = 0
D420_size_gl_in.geom.out8 max_vertices = -1
43 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value)
47 max_vertices = -1
D410.geom.out16 max_vertices = -1
65 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value)
69 max_vertices = -1
D450.geom.out10 max_vertices = -1
48 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value)
52 max_vertices = -1
Dglsl.es320.subgroup.geom.out5 max_vertices = 1
36 max_vertices = 1
/external/skia/resources/sksl/shared/
DGeometryNoGSInvocationsReorder.geom5 // Subtle error: Declaring max_vertices before invocations causes us not to
6 // apply the workaround fixup to max_vertices. It *should* be 4 (2*2) in the
8 layout(line_strip, max_vertices = 2) out;
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_vbuf.c68 unsigned max_vertices; member
103 if (vbuf->nr_vertices + nr > vbuf->max_vertices || in check_space()
326 vbuf->max_vertices = vbuf->nr_vertices = 0; in vbuf_flush_vertices()
351 vbuf->max_vertices = in vbuf_alloc_vertices()
354 if (vbuf->max_vertices >= UNDEFINED_VERTEX_ID) in vbuf_alloc_vertices()
355 vbuf->max_vertices = UNDEFINED_VERTEX_ID - 1; in vbuf_alloc_vertices()
364 (ushort) vbuf->max_vertices); in vbuf_alloc_vertices()
Ddraw_vs_exec.c117 unsigned int max_vertices = MIN2(MAX_TGSI_VERTICES, count - i); in vs_exec_run_linear() local
121 for (j = 0; j < max_vertices; j++) { in vs_exec_run_linear()
166 machine->NonHelperMask = (1 << max_vertices) - 1; in vs_exec_run_linear()
172 for (j = 0; j < max_vertices; j++) { in vs_exec_run_linear()
Ddraw_pt_fetch_shade_pipeline.c73 unsigned *max_vertices) in fetch_pipeline_prepare() argument
129 max_vertices ); in fetch_pipeline_prepare()
131 *max_vertices = MAX2( *max_vertices, 4096 ); in fetch_pipeline_prepare()
135 *max_vertices = 4096; in fetch_pipeline_prepare()
Ddraw_pt.h94 unsigned *max_vertices );
169 unsigned *max_vertices );
Ddraw_pt_vsplit.c47 unsigned max_vertices; member
229 middle->prepare(middle, vsplit->prim, opt, &vsplit->max_vertices); in vsplit_prepare()
231 vsplit->segment_size = MIN2(SEGMENT_SIZE, vsplit->max_vertices); in vsplit_prepare()
Ddraw_pt_emit.c56 unsigned *max_vertices) in draw_pt_emit_prepare() argument
127 *max_vertices = 0; in draw_pt_emit_prepare()
129 *max_vertices = (draw->render->max_vertex_buffer_bytes / in draw_pt_emit_prepare()
Ddraw_pt_fetch_shade_pipeline_llvm.c291 unsigned *max_vertices ) in llvm_middle_end_prepare() argument
323 max_vertices ); in llvm_middle_end_prepare()
325 *max_vertices = MAX2( *max_vertices, 4096 ); in llvm_middle_end_prepare()
329 *max_vertices = 4096; in llvm_middle_end_prepare()
345 *max_vertices = *max_vertices & ~1; in llvm_middle_end_prepare()
Ddraw_pt_vsplit_tmp.h58 if (icount > vsplit->max_vertices) in CONCAT()
225 assert(icount <= vsplit->max_vertices); in vsplit_segment_simple_linear()
280 const unsigned max_count_simple = vsplit->max_vertices; \
/external/deqp-deps/glslang/Test/
D320.geom51 layout(max_vertices = 200) out;
52 layout(max_vertices = 300) out; // ERROR, too big
53 void foo(layout(max_vertices = 4) int a) // ERROR
67 layout(max_vertices = 3) int b; // ERROR, not on a block member
120 layout(max_vertices = 200) out; // matching redecl
D310.geom61 layout(max_vertices = 200) out;
62 layout(max_vertices = 300) out; // ERROR, too big
63 void foo(layout(max_vertices = 4) int a) // ERROR
77 layout(max_vertices = 3) int b; // ERROR, not on a block member
130 layout(max_vertices = 200) out; // matching redecl
D150.geom65 layout(max_vertices = 200) out;
66 layout(max_vertices = 300) out; // ERROR, too big
67 void foo(layout(max_vertices = 4) int a) // ERROR
81 layout(max_vertices = 3) int b; // ERROR, not on a block member
Dcontradict_1.geom4 layout(line_strip, max_vertices = 6) out;
Dcontradict_0.geom4 layout(triangle_strip, max_vertices = 4) out;
/external/skia/resources/sksl/errors/
DLayoutRepeatedQualifiers.sksl16 max_vertices = 1,
35 max_vertices = 2,
DLayoutInFunctions.sksl16 max_vertices = 1,
38 max_vertices = 1,
/external/mesa3d/src/compiler/glsl/
Dast_type.cpp321 if (q.flags.q.max_vertices) { in merge_qualifier()
322 if (this->flags.q.max_vertices in merge_qualifier()
324 this->max_vertices->merge_qualifier(q.max_vertices); in merge_qualifier()
326 this->flags.q.max_vertices = 1; in merge_qualifier()
327 this->max_vertices = q.max_vertices; in merge_qualifier()
533 valid_out_mask.flags.q.max_vertices = 1; in validate_out_qualifier()
872 bad.flags.q.max_vertices ? " max_vertices" : "", in validate_flags()
/external/skia/tests/sksl/errors/
DLayoutInFunctions.glsl17 error: 20: layout qualifier 'max_vertices' is not permitted here
35 error: 41: layout qualifier 'max_vertices' is not permitted here

12345