mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
gallivm: Use proper index to lookup predicate register array.
Doesn't fix anything, as those indices were both always 0.
This commit is contained in:
parent
c17d5de593
commit
8690c6a6b4
1 changed files with 1 additions and 1 deletions
|
|
@ -802,7 +802,7 @@ emit_store(
|
|||
|
||||
case TGSI_FILE_PREDICATE:
|
||||
lp_exec_mask_store(&bld->exec_mask, pred, value,
|
||||
bld->preds[index][chan_index]);
|
||||
bld->preds[reg->Register.Index][chan_index]);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue