diff options
author | Jason Ekstrand <[email protected]> | 2019-05-22 12:20:01 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-05-30 14:00:26 +0000 |
commit | 859de4a74857d2736f6e2dd9d2fd98b92bbc69d9 (patch) | |
tree | 80d605a611a390797c0492353dbdad05f8f5150b /src/intel/compiler/brw_eu.h | |
parent | 43cc3dc9c0ac482b12cbc3d79489295815695b13 (diff) |
intel/fs,vec4: Use g0 as the header for MFENCE
We set header_present but then pass it some random garbage. Give it g0
instead. I'm not actually sure this does anything but g0 is the usual
header data and this is what the windows driver does so it seems like a
good idea.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_eu.h')
-rw-r--r-- | src/intel/compiler/brw_eu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_eu.h b/src/intel/compiler/brw_eu.h index d8532a0ff6e..8ef953d5aa4 100644 --- a/src/intel/compiler/brw_eu.h +++ b/src/intel/compiler/brw_eu.h @@ -1113,6 +1113,7 @@ brw_untyped_surface_write(struct brw_codegen *p, void brw_memory_fence(struct brw_codegen *p, struct brw_reg dst, + struct brw_reg src, enum opcode send_op); void |