diff options
author | Samuel Pitoiset <[email protected]> | 2017-09-26 23:26:20 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-09-27 09:26:44 +0200 |
commit | 8860b39d9432216dd40b825fc5750d3601b6cf4e (patch) | |
tree | 671c3a14818c9ed08f1712bf6e99ff03e96096fe /src/amd/vulkan/radv_query.c | |
parent | bd7fd6a0e4e9bfe3f713955c511b6ca6a6120231 (diff) |
radv: store the amount of saved constants in the compute state
It's safer and more elegant.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_query.c')
-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 1dbc493e1b7..f63497a4457 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -737,7 +737,7 @@ static void radv_query_shader(struct radv_cmd_buffer *cmd_buffer, RADV_CMD_FLAG_INV_VMEM_L1 | RADV_CMD_FLAG_CS_PARTIAL_FLUSH; - radv_meta_restore_compute(&saved_state, cmd_buffer, 16); + radv_meta_restore_compute(&saved_state, cmd_buffer); } VkResult radv_CreateQueryPool( |