mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 04:30:10 +01:00
ir_to_mesa: Copy reladdr in src_reg(dst_reg) constructor
Fixes i965 piglit:
vs-temp-array-mat[234]-col-row-wr
vs-temp-array-mat[234]-index-col-row-wr
vs-temp-array-mat[234]-index-row-wr
vs-temp-mat[234]-col-row-wr
Fixes swrast piglit:
fs-temp-array-mat[234]-col-row-wr
fs-temp-array-mat[234]-index-col-row-wr
fs-temp-array-mat[234]-index-row-wr
fs-temp-mat[234]-col-row-wr
vs-temp-array-mat[234]-col-row-wr
vs-temp-array-mat[234]-index-col-row-wr
vs-temp-array-mat[234]-index-row-wr
vs-temp-mat[234]-col-row-wr
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
d6e1a8f714
commit
f7cd9a858c
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ src_reg::src_reg(dst_reg reg)
|
|||
this->index = reg.index;
|
||||
this->swizzle = SWIZZLE_XYZW;
|
||||
this->negate = 0;
|
||||
this->reladdr = NULL;
|
||||
this->reladdr = reg.reladdr;
|
||||
}
|
||||
|
||||
dst_reg::dst_reg(src_reg reg)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue