diff options
author | Samuel Pitoiset <[email protected]> | 2018-06-26 22:35:04 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-06-27 09:48:15 +0200 |
commit | 9c09e7d66e6b93976778a0a34a1828bd513fcce9 (patch) | |
tree | 481e44bc671eade1a78fa07372f3a72e04311daf /src/amd/vulkan/radv_query.c | |
parent | a6b64d6dde5bb6f4fade2da98b22dae9de831fd6 (diff) |
radv: remove unused 'predicated' parameter from some functions
It's always false.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_query.c')
-rw-r--r-- | src/amd/vulkan/radv_query.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/amd/vulkan/radv_query.c b/src/amd/vulkan/radv_query.c index 384d75c210d..267d45890ed 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -992,7 +992,7 @@ void radv_CmdCopyQueryPoolResults( uint64_t avail_va = va + pool->availability_offset + 4 * query; /* This waits on the ME. All copies below are done on the ME */ - si_emit_wait_fence(cs, false, avail_va, 1, 0xffffffff); + si_emit_wait_fence(cs, avail_va, 1, 0xffffffff); } } radv_query_shader(cmd_buffer, cmd_buffer->device->meta_state.query.pipeline_statistics_query_pipeline, @@ -1015,7 +1015,7 @@ void radv_CmdCopyQueryPoolResults( uint64_t avail_va = va + pool->availability_offset + 4 * query; /* This waits on the ME. All copies below are done on the ME */ - si_emit_wait_fence(cs, false, avail_va, 1, 0xffffffff); + si_emit_wait_fence(cs, avail_va, 1, 0xffffffff); } if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) { uint64_t avail_va = va + pool->availability_offset + 4 * query; @@ -1176,7 +1176,6 @@ static void emit_end_query(struct radv_cmd_buffer *cmd_buffer, radeon_emit(cs, va >> 32); si_cs_emit_write_event_eop(cs, - false, cmd_buffer->device->physical_device->rad_info.chip_class, radv_cmd_buffer_uses_mec(cmd_buffer), V_028A90_BOTTOM_OF_PIPE_TS, 0, @@ -1300,14 +1299,12 @@ void radv_CmdWriteTimestamp( break; default: si_cs_emit_write_event_eop(cs, - false, cmd_buffer->device->physical_device->rad_info.chip_class, mec, V_028A90_BOTTOM_OF_PIPE_TS, 0, EOP_DATA_SEL_TIMESTAMP, query_va, 0, 0); si_cs_emit_write_event_eop(cs, - false, cmd_buffer->device->physical_device->rad_info.chip_class, mec, V_028A90_BOTTOM_OF_PIPE_TS, 0, |