HomeSort by: relevance | last modified time | path
    Searched refs:stream_id (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_vec4_gs_visitor.h 61 virtual void gs_emit_vertex(int stream_id);
68 void set_stream_control_data_bits(unsigned stream_id);
brw_vec4_gs_nir.cpp 70 int stream_id = instr->const_index[0]; local
71 gs_emit_vertex(stream_id);
gfx6_gs_visitor.h 55 virtual void gs_emit_vertex(int stream_id);
brw_vec4_gs_visitor.cpp 383 vec4_gs_visitor::set_stream_control_data_bits(unsigned stream_id)
385 /* control_data_bits |= stream_id << ((2 * (vertex_count - 1)) % 32) */
395 assert(stream_id < MAX_VERTEX_STREAMS);
400 if (stream_id == 0)
403 /* reg::sid = stream_id */
405 emit(MOV(dst_reg(sid), brw_imm_ud(stream_id)));
413 * architecture, stream_id << 2 * (vertex_count - 1) is equivalent to
414 * stream_id << ((2 * (vertex_count - 1)) % 32).
422 vec4_gs_visitor::gs_emit_vertex(int stream_id)
436 if (stream_id > 0 && !nir->info.has_transform_feedback_varyings
    [all...]
brw_fs.h 312 unsigned stream_id);
316 unsigned stream_id);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_vec4_gs_visitor.h 60 virtual void gs_emit_vertex(int stream_id);
67 void set_stream_control_data_bits(unsigned stream_id);
brw_vec4_gs_nir.cpp 86 int stream_id = instr->const_index[0]; local
87 gs_emit_vertex(stream_id);
gen6_gs_visitor.h 56 virtual void gs_emit_vertex(int stream_id);
brw_vec4_gs_visitor.cpp 413 vec4_gs_visitor::set_stream_control_data_bits(unsigned stream_id)
415 /* control_data_bits |= stream_id << ((2 * (vertex_count - 1)) % 32) */
425 assert(stream_id < MAX_VERTEX_STREAMS);
430 if (stream_id == 0)
433 /* reg::sid = stream_id */
435 emit(MOV(dst_reg(sid), brw_imm_ud(stream_id)));
443 * architecture, stream_id << 2 * (vertex_count - 1) is equivalent to
444 * stream_id << ((2 * (vertex_count - 1)) % 32).
452 vec4_gs_visitor::gs_emit_vertex(int stream_id)
466 if (stream_id > 0 && !nir->info.has_transform_feedback_varyings
    [all...]
brw_fs.h 272 unsigned stream_id);
276 unsigned stream_id);
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
link_varyings.h 145 return this->stream_id;
285 unsigned stream_id; member in class:tfeedback_decl
linker.cpp 375 int stream_id = ir->stream_id(); local
377 if (stream_id < 0) {
378 invalid_stream_id = stream_id;
383 if (stream_id > max_stream_allowed) {
384 invalid_stream_id = stream_id;
389 used_streams |= 1 << stream_id;
398 int stream_id = ir->stream_id(); local
400 if (stream_id < 0)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
link_varyings.h 133 return this->stream_id;
273 unsigned stream_id; member in class:tfeedback_decl
linker.cpp 340 int stream_id = ir->stream_id(); local
342 if (stream_id < 0) {
343 invalid_stream_id = stream_id;
348 if (stream_id > max_stream_allowed) {
349 invalid_stream_id = stream_id;
354 if (stream_id != 0)
364 int stream_id = ir->stream_id(); local
366 if (stream_id < 0)
    [all...]
  /xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
vmwgfx_drmi.h 74 vmwgfx_unref_stream(int drm_fd, uint32_t stream_id);
vmwgfx_drm.h 438 * @stream_id: Stearm to control
454 uint32_t stream_id; member in struct:drm_vmw_control_stream_arg
512 * @stream_id: Device unique context ID.
519 uint32_t stream_id; member in struct:drm_vmw_stream_arg
vmwgfx_drmi.c 470 *out = s_arg.stream_id;
475 vmwgfx_unref_stream(int drm_fd, uint32_t stream_id)
481 s_arg.stream_id = stream_id;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_lower_point_sprite.c 159 unsigned stream_id = nir_intrinsic_stream_id(instr); local
196 nir_emit_vertex(b, .stream_id = stream_id);
200 nir_end_primitive(b, .stream_id = stream_id);
  /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/
vmwgfx_drm.h 471 * @stream_id: Stearm to control
487 __u32 stream_id; member in struct:drm_vmw_control_stream_arg
545 * @stream_id: Device unique context ID.
552 __u32 stream_id; member in struct:drm_vmw_stream_arg
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/
vmwgfx_drm.h 463 * @stream_id: Stearm to control
479 __u32 stream_id; member in struct:drm_vmw_control_stream_arg
537 * @stream_id: Device unique context ID.
544 __u32 stream_id; member in struct:drm_vmw_stream_arg
  /xsrc/external/mit/libdrm/dist/include/drm/
vmwgfx_drm.h 472 * @stream_id: Stearm to control
488 __u32 stream_id; member in struct:drm_vmw_control_stream_arg
546 * @stream_id: Device unique context ID.
553 __u32 stream_id; member in struct:drm_vmw_stream_arg
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_nir.h 190 void (*emit_vertex)(struct lp_build_nir_context *bld_base, uint32_t stream_id);
191 void (*end_primitive)(struct lp_build_nir_context *bld_base, uint32_t stream_id);
lp_bld_nir_soa.c 1774 static void emit_vertex(struct lp_build_nir_context *bld_base, uint32_t stream_id)
1779 if (stream_id >= bld->gs_vertex_streams)
1783 LLVMBuildLoad(builder, bld->total_emitted_vertices_vec_ptr[stream_id], "");
1791 lp_build_const_int_vec(bld->bld_base.base.gallivm, bld->bld_base.base.type, stream_id));
1793 increment_vec_ptr_by_mask(bld_base, bld->emitted_vertices_vec_ptr[stream_id],
1795 increment_vec_ptr_by_mask(bld_base, bld->total_emitted_vertices_vec_ptr[stream_id],
1801 LLVMValueRef mask, uint32_t stream_id)
1806 if (stream_id >= bld->gs_vertex_streams)
1810 LLVMBuildLoad(builder, bld->emitted_vertices_vec_ptr[stream_id], "");
1812 LLVMBuildLoad(builder, bld->emitted_prims_vec_ptr[stream_id], "");
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
tu_query.c 930 uint32_t stream_id)
1200 uint32_t stream_id)
1207 uint64_t begin_written_iova = primitive_query_iova(pool, query, begin[stream_id], 0);
1208 uint64_t begin_generated_iova = primitive_query_iova(pool, query, begin[stream_id], 1);
1209 uint64_t end_written_iova = primitive_query_iova(pool, query, end[stream_id], 0);
1210 uint64_t end_generated_iova = primitive_query_iova(pool, query, end[stream_id], 1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_shader_llvm_gs.c 450 LLVMValueRef stream_id; local
453 stream_id = si_unpack_param(&ctx, ctx.args.streamout_config, 24, 2);
455 stream_id = ctx.ac.i32_0;
470 switch_inst = LLVMBuildSwitch(builder, stream_id, end_bb, 4);

Completed in 28 milliseconds

1 2 3