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_vec4_generator.cpp | |
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_vec4_generator.cpp')
-rw-r--r-- | src/intel/compiler/brw_vec4_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_vec4_generator.cpp b/src/intel/compiler/brw_vec4_generator.cpp index b6d2a0aba80..38181bf1469 100644 --- a/src/intel/compiler/brw_vec4_generator.cpp +++ b/src/intel/compiler/brw_vec4_generator.cpp @@ -1886,7 +1886,7 @@ generate_code(struct brw_codegen *p, break; case SHADER_OPCODE_MEMORY_FENCE: - brw_memory_fence(p, dst, BRW_OPCODE_SEND); + brw_memory_fence(p, dst, src[0], BRW_OPCODE_SEND); break; case SHADER_OPCODE_FIND_LIVE_CHANNEL: { |