mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
nouveau/mme: Don't swap x and y in mme_fermi_merge_to()
This was probably an artifact of the fermi/turing merge. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24326>
This commit is contained in:
parent
75deae5988
commit
b664b42fce
1 changed files with 2 additions and 2 deletions
|
|
@ -725,8 +725,8 @@ mme_fermi_merge_to(struct mme_builder *b, struct mme_value dst,
|
|||
assert(bits < 32);
|
||||
assert(src_pos < 32);
|
||||
|
||||
struct mme_value y_reg = mme_fermi_value_as_reg(b, x);
|
||||
struct mme_value x_reg = mme_fermi_value_as_reg(b, y);
|
||||
struct mme_value x_reg = mme_fermi_value_as_reg(b, x);
|
||||
struct mme_value y_reg = mme_fermi_value_as_reg(b, y);
|
||||
|
||||
if (!mme_fermi_next_inst_can_fit_a_full_inst(fb))
|
||||
mme_fermi_new_inst(fb);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue