2019-04-22 15:58:27 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkGetPhysicalDeviceSparseImageFormatProperties(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
VkFormat format,
|
|
|
|
VkImageType type,
|
|
|
|
VkSampleCountFlagBits samples,
|
|
|
|
VkImageUsageFlags usage,
|
|
|
|
VkImageTiling tiling,
|
|
|
|
uint32_t* pPropertyCount,
|
|
|
|
VkSparseImageFormatProperties* pProperties)
|
|
|
|
{
|
2019-09-30 02:13:55 +02:00
|
|
|
UNSUPPORTED(rpi_vkGetPhysicalDeviceSparseImageFormatProperties);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkGetImageSparseMemoryRequirements(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkImage image,
|
|
|
|
uint32_t* pSparseMemoryRequirementCount,
|
|
|
|
VkSparseImageMemoryRequirements* pSparseMemoryRequirements)
|
|
|
|
{
|
2019-09-30 02:13:55 +02:00
|
|
|
UNSUPPORTED(rpi_vkGetImageSparseMemoryRequirements);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkQueueBindSparse(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkQueue queue,
|
|
|
|
uint32_t bindInfoCount,
|
|
|
|
const VkBindSparseInfo* pBindInfo,
|
|
|
|
VkFence fence)
|
|
|
|
{
|
2019-09-30 02:13:55 +02:00
|
|
|
UNSUPPORTED(rpi_vkQueueBindSparse);
|
2020-02-08 20:38:29 +01:00
|
|
|
return UNSUPPORTED_RETURN;
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkGetPhysicalDeviceSparseImageFormatProperties2(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo,
|
|
|
|
uint32_t* pPropertyCount,
|
|
|
|
VkSparseImageFormatProperties2* pProperties)
|
|
|
|
{
|
2019-09-30 02:13:55 +02:00
|
|
|
UNSUPPORTED(rpi_vkGetPhysicalDeviceSparseImageFormatProperties2);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkGetImageSparseMemoryRequirements2(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
const VkImageSparseMemoryRequirementsInfo2* pInfo,
|
|
|
|
uint32_t* pSparseMemoryRequirementCount,
|
|
|
|
VkSparseImageMemoryRequirements2* pSparseMemoryRequirements)
|
|
|
|
{
|
2019-09-30 02:13:55 +02:00
|
|
|
UNSUPPORTED(rpi_vkGetImageSparseMemoryRequirements2);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|