/external/deqp-deps/glslang/Test/baseResults/ |
D | mains1.frag.out | 22 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
|
D | max_vertices_0.geom.out | 4 max_vertices = 0 23 max_vertices = 0
|
D | 420_size_gl_in.geom.out | 8 max_vertices = -1 43 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value) 47 max_vertices = -1
|
D | 410.geom.out | 15 max_vertices = -1 64 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value) 68 max_vertices = -1
|
D | 450.geom.out | 10 max_vertices = -1 48 ERROR: Linking geometry stage: At least one shader must specify a layout(max_vertices = value) 52 max_vertices = -1
|
D | 320.geom.out | 13 ERROR: 0:52: 'max_vertices' : too large, must be less than gl_MaxGeometryOutputVertices 14 ERROR: 0:52: 'max_vertices' : cannot change previously set layout value 15 ERROR: 0:53: 'max_vertices' : can only apply to a standalone qualifier 24 ERROR: 0:67: 'max_vertices' : can only apply to a standalone qualifier 47 max_vertices = 200 177 max_vertices = 200
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_vbuf.c | 68 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()
|
D | draw_vs_exec.c | 116 unsigned int max_vertices = MIN2(MAX_TGSI_VERTICES, count - i); in vs_exec_run_linear() local 120 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()
|
D | draw_pt_fetch_shade_pipeline_llvm.c | 150 unsigned *max_vertices ) in llvm_middle_end_prepare() argument 180 max_vertices ); in llvm_middle_end_prepare() 182 *max_vertices = MAX2( *max_vertices, 4096 ); in llvm_middle_end_prepare() 186 *max_vertices = 4096; in llvm_middle_end_prepare() 202 *max_vertices = *max_vertices & ~1; in llvm_middle_end_prepare()
|
D | draw_pt_fetch_shade_pipeline.c | 73 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()
|
D | draw_pt_vsplit.c | 47 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()
|
D | draw_pt_emit.c | 56 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()
|
D | draw_pt.h | 94 unsigned *max_vertices ); 169 unsigned *max_vertices );
|
D | draw_pt_vsplit_tmp.h | 58 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/ |
D | 320.geom | 51 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
|
D | 310.geom | 61 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
|
D | 150.geom | 65 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
|
D | 400.geom | 13 layout(max_vertices = 127) out; 63 layout(max_vertices = 127, invocations = 4) out; // ERROR 64 layout(invocations = 4, max_vertices = 127) in; // ERROR 65 layout(max_vertices = 127, invocations = 4) uniform; // 2 ERRORs
|
D | max_vertices_0.geom | 4 layout(triangle_strip, max_vertices = 0) out;
|
D | spv.450.geom | 6 layout(max_vertices = 127) out;
|
D | spv.subgroup.geom | 4 layout(points, max_vertices = 1) out;
|
D | specExamples.vert | 35 layout(triangle_strip, max_vertices = 60) out; // order does not matter 36 layout(max_vertices = 60) out; // redeclaration okay 39 //layout(max_vertices = 30) out; // error, contradicts 60
|
D | spv.330.geom | 17 layout( triangle_strip, max_vertices = 3 ) out;
|
/external/mesa3d/src/compiler/glsl/ |
D | ast_type.cpp | 320 if (q.flags.q.max_vertices) { in merge_qualifier() 321 if (this->flags.q.max_vertices in merge_qualifier() 323 this->max_vertices->merge_qualifier(q.max_vertices); in merge_qualifier() 325 this->flags.q.max_vertices = 1; in merge_qualifier() 326 this->max_vertices = q.max_vertices; in merge_qualifier() 520 valid_out_mask.flags.q.max_vertices = 1; in validate_out_qualifier() 812 bad.flags.q.max_vertices ? " max_vertices" : "", in validate_flags()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_gs_intrinsics.c | 79 nir_ssa_def *max_vertices = in rewrite_emit_vertex() local 87 nir_push_if(b, nir_ilt(b, count, max_vertices)); in rewrite_emit_vertex()
|