2019-04-22 15:58:27 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceSparseImageFormatProperties(
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
VkFormat format,
|
|
|
|
VkImageType type,
|
|
|
|
VkSampleCountFlagBits samples,
|
|
|
|
VkImageUsageFlags usage,
|
|
|
|
VkImageTiling tiling,
|
|
|
|
uint32_t* pPropertyCount,
|
|
|
|
VkSparseImageFormatProperties* pProperties)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
UNSUPPORTED(vkGetPhysicalDeviceSparseImageFormatProperties);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VKAPI_ATTR void VKAPI_CALL vkGetImageSparseMemoryRequirements(
|
|
|
|
VkDevice device,
|
|
|
|
VkImage image,
|
|
|
|
uint32_t* pSparseMemoryRequirementCount,
|
|
|
|
VkSparseImageMemoryRequirements* pSparseMemoryRequirements)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
UNSUPPORTED(vkGetImageSparseMemoryRequirements);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL vkQueueBindSparse(
|
|
|
|
VkQueue queue,
|
|
|
|
uint32_t bindInfoCount,
|
|
|
|
const VkBindSparseInfo* pBindInfo,
|
|
|
|
VkFence fence)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
UNSUPPORTED(vkQueueBindSparse);
|
2019-04-22 15:58:27 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceSparseImageFormatProperties2(
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo,
|
|
|
|
uint32_t* pPropertyCount,
|
|
|
|
VkSparseImageFormatProperties2* pProperties)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
UNSUPPORTED(vkGetPhysicalDeviceSparseImageFormatProperties2);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VKAPI_ATTR void VKAPI_CALL vkGetImageSparseMemoryRequirements2(
|
|
|
|
VkDevice device,
|
|
|
|
const VkImageSparseMemoryRequirementsInfo2* pInfo,
|
|
|
|
uint32_t* pSparseMemoryRequirementCount,
|
|
|
|
VkSparseImageMemoryRequirements2* pSparseMemoryRequirements)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
UNSUPPORTED(vkGetImageSparseMemoryRequirements2);
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|