Home
last modified time | relevance | path

Searched refs:vs_key (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/broadcom/compiler/
Dv3d_nir_lower_io.c123 num_used_outputs = c->vs_key->num_used_outputs; in v3d_varying_slot_vpm_offset()
124 used_outputs = c->vs_key->used_outputs; in v3d_varying_slot_vpm_offset()
316 if (!c->vs_key->va_swap_rb_mask) in v3d_nir_lower_vertex_input()
321 if (!(c->vs_key->va_swap_rb_mask & (1 << location))) in v3d_nir_lower_vertex_input()
473 bool needs_ff_outputs = c->vs_key->base.is_last_geometry_stage; in v3d_nir_setup_vpm_layout_vs()
475 if (c->vs_key->is_coord) { in v3d_nir_setup_vpm_layout_vs()
483 if (!c->vs_key->is_coord) { in v3d_nir_setup_vpm_layout_vs()
488 if (c->vs_key->per_vertex_point_size) in v3d_nir_setup_vpm_layout_vs()
494 c->vpm_output_size = MAX2(1, vpm_offset + c->vs_key->num_used_outputs); in v3d_nir_setup_vpm_layout_vs()
627 num_used_outputs = c->vs_key->num_used_outputs; in v3d_nir_emit_ff_vpm_outputs()
Dvir.c888 for (int i = 0; i < c->vs_key->num_used_outputs; i++) { in v3d_nir_lower_vs_early()
889 int slot = v3d_slot_get_slot(c->vs_key->used_outputs[i]); in v3d_nir_lower_vs_early()
890 int comp = v3d_slot_get_component(c->vs_key->used_outputs[i]); in v3d_nir_lower_vs_early()
900 if (c->vs_key->per_vertex_point_size) in v3d_nir_lower_vs_early()
1442 c->vs_key = (struct v3d_vs_key *) c->key; in v3d_attempt_compile()
1984 if (c->vs_key && c->vs_key->is_coord) in vir_get_stage_name()
Dv3d_compiler.h791 struct v3d_vs_key *vs_key; member
Dnir_to_vir.c1967 c->vs_key->va_swap_rb_mask & (1 << var->data.location)) { in ntq_setup_vs_inputs()
/third_party/mesa3d/src/intel/compiler/
Dbrw_nir_analyze_ubo_ranges.c200 const struct brw_vs_prog_key *vs_key, in brw_nir_analyze_ubo_ranges() argument
213 if (vs_key && vs_key->nr_userclip_plane_consts > 0) in brw_nir_analyze_ubo_ranges()
Dbrw_nir.h176 const struct brw_vs_prog_key *vs_key,
Dbrw_fs_visitor.cpp759 const struct brw_vs_prog_key *vs_key = in emit_urb_writes() local
883 if (stage == MESA_SHADER_VERTEX && vs_key->clamp_vertex_color && in emit_urb_writes()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_disk_cache.c312 struct brw_vs_prog_key vs_key; in brw_disk_cache_write_render_programs() local
313 brw_vs_populate_key(brw, &vs_key); in brw_disk_cache_write_render_programs()
314 vs_key.base.program_string_id = 0; in brw_disk_cache_write_render_programs()
316 write_program_data(brw, prog, &vs_key, brw->vs.base.prog_data, in brw_disk_cache_write_render_programs()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_compiler.c809 const struct zink_vs_key *vs_key = zink_vs_key(key); in zink_shader_compile() local
810 switch (vs_key->size) { in zink_shader_compile()
812 decomposed_attrs = vs_key->u32.decomposed_attrs; in zink_shader_compile()
813 decomposed_attrs_without_w = vs_key->u32.decomposed_attrs_without_w; in zink_shader_compile()
816 decomposed_attrs = vs_key->u16.decomposed_attrs; in zink_shader_compile()
817 decomposed_attrs_without_w = vs_key->u16.decomposed_attrs_without_w; in zink_shader_compile()
820 decomposed_attrs = vs_key->u8.decomposed_attrs; in zink_shader_compile()
821 decomposed_attrs_without_w = vs_key->u8.decomposed_attrs_without_w; in zink_shader_compile()
/third_party/mesa3d/src/intel/blorp/
Dblorp.c278 struct brw_vs_prog_key vs_key = { 0, }; in blorp_compile_vs() local
282 .key = &vs_key, in blorp_compile_vs()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_nir_lower_io.c178 enum pipe_format format = c->vs_key->attr_formats[attr]; in vc4_nir_lower_vertex_attr()
Dvc4_program.c740 enum pipe_format format = c->vs_key->attr_formats[attr]; in emit_vertex_input()
1468 if (c->vs_key->per_vertex_point_size) in emit_vert_end()
1506 if (c->vs_key->per_vertex_point_size) in emit_coord_end()
2247 c->vs_key = (struct vc4_vs_key *)key; in vc4_shader_ntq()
2250 c->vs_key = (struct vc4_vs_key *)key; in vc4_shader_ntq()
2379 c->vs_key->fs_inputs->input_slots, in vc4_shader_ntq()
2380 c->vs_key->fs_inputs->num_inputs); in vc4_shader_ntq()
Dvc4_qir.h448 struct vc4_vs_key *vs_key; member