anv: fix argument name for vkCmdEndQuery

Doesn't fix anything but it's not the right function prototype.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 673f33c77d ("anv: Implement CmdBegin/EndQueryIndexed")
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com>
This commit is contained in:
Lionel Landwerlin 2019-04-22 22:09:11 +01:00
parent cc53815ae1
commit 0fb0058f18
1 changed files with 2 additions and 2 deletions

View File

@ -504,9 +504,9 @@ void genX(CmdBeginQueryIndexedEXT)(
void genX(CmdEndQuery)(
VkCommandBuffer commandBuffer,
VkQueryPool queryPool,
VkQueryControlFlags flags)
uint32_t query)
{
genX(CmdEndQueryIndexedEXT)(commandBuffer, queryPool, flags, 0);
genX(CmdEndQueryIndexedEXT)(commandBuffer, queryPool, query, 0);
}
void genX(CmdEndQueryIndexedEXT)(