mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
i965: Fix RELOC_WRITE typo in brw_store_data_imm64()
Fixes:6c530ad116("i965: Reduce passing 2x32b of reloc_domains to 2 bits") Signed-off-by: Andriy Khulap <andriy.khulap@globallogic.com> Signed-off-by: Vadym Shovkoplias <vadym.shovkoplias@globallogic.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> (cherry picked from commit7859701920)
This commit is contained in:
parent
7064c88793
commit
0a62b02c05
1 changed files with 1 additions and 1 deletions
|
|
@ -1399,7 +1399,7 @@ brw_store_data_imm64(struct brw_context *brw, struct brw_bo *bo,
|
|||
BEGIN_BATCH(5);
|
||||
OUT_BATCH(MI_STORE_DATA_IMM | (5 - 2));
|
||||
if (devinfo->gen >= 8)
|
||||
OUT_RELOC64(bo, 0, offset);
|
||||
OUT_RELOC64(bo, RELOC_WRITE, offset);
|
||||
else {
|
||||
OUT_BATCH(0); /* MBZ */
|
||||
OUT_RELOC(bo, RELOC_WRITE, offset);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue