mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 10:38:30 +02:00
i965/vs: Drop the assertion about dst.reg_offset == 0.
Adding the offset is the right thing to do here, and fixes glsl-vs-mat-add-1.
This commit is contained in:
parent
e5363c7fd2
commit
814a9bef30
1 changed files with 0 additions and 1 deletions
|
|
@ -146,7 +146,6 @@ vec4_instruction::get_dst(void)
|
|||
|
||||
switch (dst.file) {
|
||||
case GRF:
|
||||
assert(dst.reg_offset == 0);
|
||||
brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0);
|
||||
brw_reg = retype(brw_reg, dst.type);
|
||||
brw_reg.dw1.bits.writemask = dst.writemask;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue