Home
last modified time | relevance | path

Searched refs:VARYING_SLOT_VAR0_16BIT (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/mesa3d/src/amd/common/
H A Dac_nir.c244 if (slot >= VARYING_SLOT_VAR0_16BIT) { in ac_nir_gather_prerast_store_output_info()
245 const unsigned index = slot - VARYING_SLOT_VAR0_16BIT; in ac_nir_gather_prerast_store_output_info()
270 const bool non_dedicated_16bit = slot < VARYING_SLOT_VAR0_16BIT && store_val->bit_size == 16; in ac_nir_gather_prerast_store_output_info()
560 unsigned offset = param_offsets[VARYING_SLOT_VAR0_16BIT + slot]; in ac_nir_export_parameters()
698 if (slot < VARYING_SLOT_VAR0_16BIT) { in get_output_and_type()
702 unsigned index = slot - VARYING_SLOT_VAR0_16BIT; in get_output_and_type()
1129 if (sem.location < VARYING_SLOT_VAR0_16BIT) { in lower_legacy_gs_store_output()
1132 unsigned index = sem.location - VARYING_SLOT_VAR0_16BIT; in lower_legacy_gs_store_output()
1144 …const bool non_dedicated_16bit = sem.location < VARYING_SLOT_VAR0_16BIT && store_val->bit_size == … in lower_legacy_gs_store_output()
H A Dac_nir_lower_ngg.c1735 if (out->location < VARYING_SLOT_VAR0_16BIT) { in ngg_nogs_store_xfb_outputs_to_lds()
1739 unsigned index = out->location - VARYING_SLOT_VAR0_16BIT; in ngg_nogs_store_xfb_outputs_to_lds()
2175 if (out->location >= VARYING_SLOT_VAR0_16BIT) { in ngg_build_streamout_vertex()
2179 BITFIELD_MASK(out->location - VARYING_SLOT_VAR0_16BIT)); in ngg_build_streamout_vertex()
2205 if (out->location >= VARYING_SLOT_VAR0_16BIT) { in ngg_build_streamout_vertex()
2206 unsigned index = out->location - VARYING_SLOT_VAR0_16BIT; in ngg_build_streamout_vertex()
2383 unsigned slot = VARYING_SLOT_VAR0_16BIT + i; in gather_vs_outputs()
/aosp_15_r20/external/mesa3d/src/compiler/nir/tests/
H A Dopt_varyings_tests_prop_uniform.cpp46 cindex == VARYING_SLOT_VAR0_16BIT) \
126 if (pindex >= VARYING_SLOT_VAR0_16BIT) { \
128 BITFIELD_BIT(pindex - VARYING_SLOT_VAR0_16BIT)); \
130 BITFIELD_BIT(cindex - VARYING_SLOT_VAR0_16BIT)); \
H A Dopt_varyings_tests_prop_uniform_expr.cpp46 cindex == VARYING_SLOT_VAR0_16BIT) \
126 if (pindex >= VARYING_SLOT_VAR0_16BIT) { \
128 BITFIELD_BIT(pindex - VARYING_SLOT_VAR0_16BIT)); \
130 BITFIELD_BIT(cindex - VARYING_SLOT_VAR0_16BIT)); \
H A Dopt_varyings_tests_prop_ubo.cpp46 cindex == VARYING_SLOT_VAR0_16BIT) \
126 if (pindex >= VARYING_SLOT_VAR0_16BIT) { \
128 BITFIELD_BIT(pindex - VARYING_SLOT_VAR0_16BIT)); \
130 BITFIELD_BIT(cindex - VARYING_SLOT_VAR0_16BIT)); \
H A Dopt_varyings_tests_prop_const.cpp46 cindex == VARYING_SLOT_VAR0_16BIT) \
126 if (pindex >= VARYING_SLOT_VAR0_16BIT) { \
128 BITFIELD_BIT(pindex - VARYING_SLOT_VAR0_16BIT)); \
130 BITFIELD_BIT(cindex - VARYING_SLOT_VAR0_16BIT)); \
H A Dopt_varyings_tests_dead_output.cpp70 index == VARYING_SLOT_TEX0 || index == VARYING_SLOT_VAR0_16BIT) \
74 if (index >= VARYING_SLOT_VAR0_16BIT) { \
76 BITFIELD_BIT(index - VARYING_SLOT_VAR0_16BIT)); \
/aosp_15_r20/external/mesa3d/src/compiler/nir/
H A Dnir_lower_mediump.c275 sem.location = VARYING_SLOT_VAR0_16BIT + index / 2; in nir_lower_mediump_io()
376 if (sem.location < VARYING_SLOT_VAR0_16BIT || in nir_unpack_16bit_varying_slots()
381 (sem.location - VARYING_SLOT_VAR0_16BIT) * 2 + in nir_unpack_16bit_varying_slots()
H A Dnir_gather_info.c439 if (semantics.location >= VARYING_SLOT_VAR0_16BIT && in gather_intrinsic_info()
444 BITFIELD_RANGE(semantics.location - VARYING_SLOT_VAR0_16BIT, num_slots); in gather_intrinsic_info()
/aosp_15_r20/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_info.c810 } else if ((semantic <= VARYING_SLOT_VAR31 || semantic >= VARYING_SLOT_VAR0_16BIT) && in si_nir_scan_shader()
873 if ((semantic <= VARYING_SLOT_VAR31 || semantic >= VARYING_SLOT_VAR0_16BIT) && in si_nir_scan_shader()
H A Dsi_shader.c82 if (semantic >= VARYING_SLOT_VAR0_16BIT && semantic <= VARYING_SLOT_VAR15_16BIT) in si_shader_io_get_unique_index()
83 return SI_UNIQUE_SLOT_VAR0_16BIT + (semantic - VARYING_SLOT_VAR0_16BIT); in si_shader_io_get_unique_index()
2017 if (sem.location >= VARYING_SLOT_VAR0_16BIT) in si_nir_assign_param_offsets()
2018 outputs_written_16bit |= BITFIELD_BIT(sem.location - VARYING_SLOT_VAR0_16BIT); in si_nir_assign_param_offsets()
2730 if (slot < VARYING_SLOT_VAR0_16BIT) { in si_init_gs_output_info()
2734 unsigned index = slot - VARYING_SLOT_VAR0_16BIT; in si_init_gs_output_info()
H A Dsi_state_shaders.cpp3381 if ((semantic <= VARYING_SLOT_VAR31 || semantic >= VARYING_SLOT_VAR0_16BIT) && in si_init_shader_selector_async()
/aosp_15_r20/external/mesa3d/src/compiler/
H A Dshader_enums.c285 ENUM(VARYING_SLOT_VAR0_16BIT), in gl_varying_slot_name_for_stage()
H A Dshader_enums.h441 VARYING_SLOT_VAR0_16BIT, enumerator