mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
v3dv: implement vkGetPhysicalDeviceSparseImageFormatProperties
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
parent
85f1f0690e
commit
5935ef098d
1 changed files with 14 additions and 0 deletions
|
|
@ -372,3 +372,17 @@ unsupported:
|
|||
|
||||
return VK_ERROR_FORMAT_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
void
|
||||
v3dv_GetPhysicalDeviceSparseImageFormatProperties(
|
||||
VkPhysicalDevice physicalDevice,
|
||||
VkFormat format,
|
||||
VkImageType type,
|
||||
VkSampleCountFlagBits samples,
|
||||
VkImageUsageFlags usage,
|
||||
VkImageTiling tiling,
|
||||
uint32_t *pPropertyCount,
|
||||
VkSparseImageFormatProperties *pProperties)
|
||||
{
|
||||
*pPropertyCount = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue