diff options
author | Dave Airlie <[email protected]> | 2017-12-28 16:31:48 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-12-28 19:31:01 +1000 |
commit | ec1edd0fd29e50fae4aadde152d534a371ba8f6b (patch) | |
tree | 7f168865b22e9a45487ce0311ef7c8b1536303b5 /src | |
parent | 38e4467e99ad4ea6661ef0cfc54a9942bb872f66 (diff) |
radv: fix pipeline statistics end query on compute queue
It's legal to a pipeline stat query on a compute queue,
but we'd emit the wrong packet here. This should fix it to emit
the correct packet.
Noticed while inspecting the mpv hang.
Fixes: ad61eac250 (radv: factor out eop event writing code. (v2))
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_query.c b/src/amd/vulkan/radv_query.c index 5dc88af8f84..ace745e4e6e 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -1156,7 +1156,7 @@ void radv_CmdEndQuery( si_cs_emit_write_event_eop(cs, false, cmd_buffer->device->physical_device->rad_info.chip_class, - false, + radv_cmd_buffer_uses_mec(cmd_buffer), V_028A90_BOTTOM_OF_PIPE_TS, 0, 1, avail_va, 0, 1); break; |