| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| H A D | sfn_shader_geometry.h | 48 bool emit_vertex(nir_intrinsic_instr* instr, bool cut);
|
| H A D | sfn_shader_geometry.cpp | 266 return emit_vertex(instr, false); 268 return emit_vertex(instr, true); 283 bool GeometryShaderFromNir::emit_vertex(nir_intrinsic_instr* instr, bool cut) function in class:r600::GeometryShaderFromNir
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_vec4_vs_visitor.cpp | 96 emit_vertex();
|
| H A D | brw_vec4_tes.cpp | 228 emit_vertex();
|
| H A D | brw_vec4.h | 363 void emit_vertex();
|
| H A D | brw_vec4_gs_visitor.cpp | 496 emit_vertex();
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_pipe_vbuf.c | 119 emit_vertex(struct vbuf_stage *vbuf, struct vertex_header *vertex) function in typeref:typename:ushort 150 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[i]); 164 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[i]); 176 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[0]);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_pipe_vbuf.c | 119 emit_vertex(struct vbuf_stage *vbuf, struct vertex_header *vertex) function in typeref:typename:ushort 150 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[i]); 164 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[i]); 176 vbuf->indices[vbuf->nr_indices++] = emit_vertex(vbuf, prim->v[0]);
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/common/ |
| H A D | ac_shader_abi.h | 95 void (*emit_vertex)(struct ac_shader_abi *abi, member in struct:ac_shader_abi
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_vec4_vs_visitor.cpp | 165 emit_vertex();
|
| H A D | brw_vec4_tes.cpp | 283 emit_vertex();
|
| H A D | brw_vec4.h | 365 void emit_vertex();
|
| H A D | brw_vec4_gs_visitor.cpp | 526 emit_vertex();
|
| /xsrc/external/mit/MesaLib/dist/src/amd/llvm/ |
| H A D | ac_shader_abi.h | 68 void (*emit_vertex)(struct ac_shader_abi *abi, unsigned stream, LLVMValueRef *addrs); member in struct:ac_shader_abi
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_tgsi.h | 419 void (*emit_vertex)(const struct lp_build_tgsi_gs_iface *gs_iface, member in struct:lp_build_tgsi_gs_iface
|
| H A D | lp_bld_tgsi_soa.c | 3417 emit_vertex( function in typeref:typename:void 3425 if (bld->gs_iface->emit_vertex) { 3432 bld->gs_iface->emit_vertex(bld->gs_iface, &bld->bld_base, 3984 bld.bld_base.op_actions[TGSI_OPCODE_EMIT].emit = emit_vertex;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_nir.h | 190 void (*emit_vertex)(struct lp_build_nir_context *bld_base, uint32_t stream_id); member in struct:lp_build_nir_context
|
| H A D | lp_bld_tgsi.h | 438 void (*emit_vertex)(const struct lp_build_gs_iface *gs_iface, member in struct:lp_build_gs_iface
|
| H A D | lp_bld_nir_soa.c | 1774 static void emit_vertex(struct lp_build_nir_context *bld_base, uint32_t stream_id) function in typeref:typename:void 1781 assert(bld->gs_iface->emit_vertex); 1787 bld->gs_iface->emit_vertex(bld->gs_iface, &bld->bld_base.base, 2491 bld.bld_base.emit_vertex = emit_vertex;
|
| H A D | lp_bld_tgsi_soa.c | 3957 emit_vertex( function in typeref:typename:void 3965 if (bld->gs_iface->emit_vertex) { 3976 bld->gs_iface->emit_vertex(bld->gs_iface, &bld->bld_base.base, 4579 bld.bld_base.op_actions[TGSI_OPCODE_EMIT].emit = emit_vertex;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | linker.cpp | 836 find_emit_vertex_visitor emit_vertex(ctx->Const.MaxVertexStreams - 1); local in function:validate_geometry_shader_emissions 837 emit_vertex.run(sh->ir); 838 if (emit_vertex.error()) { 841 emit_vertex.error_func(), 842 emit_vertex.error_stream(), 845 prog->Geom.ActiveStreamMask = emit_vertex.active_stream_mask(); 846 prog->Geom.UsesEndPrimitive = emit_vertex.uses_end_primitive();
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | linker.cpp | 810 find_emit_vertex_visitor emit_vertex(ctx->Const.MaxVertexStreams - 1); local in function:validate_geometry_shader_emissions 811 emit_vertex.run(sh->ir); 812 if (emit_vertex.error()) { 815 emit_vertex.error_func(), 816 emit_vertex.error_stream(), 819 prog->Geom.UsesStreams = emit_vertex.uses_streams(); 820 prog->Geom.UsesEndPrimitive = emit_vertex.uses_end_primitive();
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_shader_llvm_gs.c | 658 ctx->abi.emit_vertex = si_llvm_emit_vertex;
|
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| H A D | gen4_vertex.c | 354 emit_vertex(struct sna *sna, function in typeref:typename:sse2 force_inline void 369 emit_vertex(sna, op, 373 emit_vertex(sna, op, 377 emit_vertex(sna, op,
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/ |
| H A D | gen4_vertex.c | 354 emit_vertex(struct sna *sna, function in typeref:typename:sse2 force_inline void 369 emit_vertex(sna, op, 373 emit_vertex(sna, op, 377 emit_vertex(sna, op,
|