Sfoglia il codice sorgente

gallivm: fix storing of the addr register

we store into the index specified by the register index, not an
indirect register.
tags/android-x86-2.2
Zack Rusin 15 anni fa
parent
commit
5572805423
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c

+ 1
- 1
src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c Vedi File

@@ -984,7 +984,7 @@ emit_store(

case TGSI_FILE_ADDRESS:
lp_exec_mask_store(&bld->exec_mask, pred, value,
bld->addr[reg->Indirect.Index][chan_index]);
bld->addr[reg->Register.Index][chan_index]);
break;

case TGSI_FILE_PREDICATE:

Loading…
Annulla
Salva