Properly unwrap parameters to vkResetCommandPool

This commit is contained in:
baldurk
2016-02-07 18:50:13 +01:00
parent 5b2806f573
commit 69409f9ea4
@@ -212,7 +212,7 @@ VkResult WrappedVulkan::vkResetCommandPool(
VkCommandPool cmdPool,
VkCommandPoolResetFlags flags)
{
return ObjDisp(device)->ResetCommandPool(device, cmdPool, flags);
return ObjDisp(device)->ResetCommandPool(Unwrap(device), Unwrap(cmdPool), flags);
}