mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
fix for prev commit
This commit is contained in:
parent
e2dff35f95
commit
ae5aa1f906
1 changed files with 2 additions and 2 deletions
|
|
@ -182,8 +182,8 @@ static void emit_int( struct brw_wm_compile *c,
|
|||
for (i = 0; i < 4; i++) {
|
||||
if (mask & (1<<i)) {
|
||||
struct brw_reg src, dst;
|
||||
dst = retype(get_dst_reg(c, inst, i, 1), BRW_REGISTER_TYPE_D);
|
||||
src = retype(get_src_reg(c, &inst->SrcReg[0], i, 1), BRW_REGISTER_TYPE_D);
|
||||
dst = get_dst_reg(c, inst, i, 1) ;
|
||||
src = get_src_reg(c, &inst->SrcReg[0], i, 1);
|
||||
brw_RNDD(p, dst, src);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue