mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 11:10:27 +01:00
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:
parent
ba6bcb387c
commit
aaa59ef70c
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue