Home
last modified time | relevance | path

Searched refs:system_value (Results 1 – 7 of 7) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
Dnir_intrinsics.py769 def system_value(name, dest_comp, indices=[], bit_sizes=[32]): function
774 system_value("frag_coord", 4)
775 system_value("point_coord", 2)
776 system_value("line_coord", 1)
777 system_value("front_face", 1, bit_sizes=[1, 32])
778 system_value("vertex_id", 1)
779 system_value("vertex_id_zero_base", 1)
780 system_value("first_vertex", 1)
781 system_value("is_indexed_draw", 1)
782 system_value("base_vertex", 1)
[all …]
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_nir.h50 gl_system_value* system_value,
Ddxil_signature.h43 …uint32_t system_value; // Semantic type. Similar to DxilSemantic::Kind, but a serializ… member
Ddxil_signature.c499 elm->system_value = (uint32_t) prog_semantic_from_kind(semantic->kind, semantic->rows, row); in fill_signature_element()
Dnir_to_dxil.c482 nir_variable *system_value[SYSTEM_VALUE_MAX]; member
5709 ctx->system_value[sv_slot] = var; in append_input_or_sysvalue()
5715 ctx->system_value[sv_slot] = add_sysvalue(ctx, sv_slot, name, driver_location); in append_input_or_sysvalue()
5716 if (!ctx->system_value[sv_slot]) in append_input_or_sysvalue()
5719 nir_shader_add_variable(ctx->shader, ctx->system_value[sv_slot]); in append_input_or_sysvalue()
5892 NIR_PASS_V(s, dxil_nir_lower_sysval_to_load_input, ctx->system_value); in nir_to_dxil()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_ureg.c135 } system_value[UREG_MAX_SYSTEM_VALUE]; member
406 if (ureg->system_value[i].semantic_name == semantic_name && in ureg_DECL_system_value()
407 ureg->system_value[i].semantic_index == semantic_index) { in ureg_DECL_system_value()
413 ureg->system_value[ureg->nr_system_values].semantic_name = semantic_name; in ureg_DECL_system_value()
414 ureg->system_value[ureg->nr_system_values].semantic_index = semantic_index; in ureg_DECL_system_value()
1931 ureg->system_value[i].semantic_name, in emit_decls()
1932 ureg->system_value[i].semantic_index, in emit_decls()
/third_party/mesa3d/docs/relnotes/
D21.1.0.rst1125 - nir/linking: Remove system_value handling from helper