mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01:00
Fix incorrect stage reference
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20616>
This commit is contained in:
parent
63345d59b0
commit
f13a42e5a1
1 changed files with 1 additions and 1 deletions
|
|
@ -1222,7 +1222,7 @@ select_shader_variant(struct d3d12_selection_context *sel_ctx, d3d12_shader_sele
|
|||
new_nir_variant->info.patch_outputs_written |= patch_mask;
|
||||
while (patch_mask) {
|
||||
int slot = u_bit_scan(&patch_mask);
|
||||
create_varyings_from_info(new_nir_variant, &key.ds.required_patch_inputs, slot, nir_var_shader_out, true);
|
||||
create_varyings_from_info(new_nir_variant, &key.hs.required_patch_outputs, slot, nir_var_shader_out, true);
|
||||
}
|
||||
}
|
||||
dxil_reassign_driver_locations(new_nir_variant, nir_var_shader_out,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue