turnip: Annotate vkGetImageSubresourceLayout with tu_stub

Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
Chad Versace 2019-01-16 15:01:35 -08:00 committed by Chia-I Wu
parent ba6bcb387c
commit aaa59ef70c
1 changed files with 6 additions and 0 deletions

View File

@ -283,6 +283,12 @@ tu_GetImageSubresourceLayout(VkDevice _device,
const VkImageSubresource *pSubresource,
VkSubresourceLayout *pLayout)
{
tu_stub();
/* Even though this is a stub, let's avoid heisenbugs by providing
* deterministic behavior.
*/
memset(pLayout, 0, sizeof(*pLayout));
}
VkResult