mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 04:10:06 +00:00
BindBufferMemory, BindImageMemory - Return VK_ERROR_UNKNOWN for unknown allocation type
This commit is contained in:
parent
936bc4b57e
commit
2ea07806af
@ -15598,7 +15598,7 @@ VkResult VmaAllocator_T::BindBufferMemory(
|
||||
VkBuffer hBuffer,
|
||||
const void* pNext)
|
||||
{
|
||||
VkResult res = VK_SUCCESS;
|
||||
VkResult res = VK_ERROR_UNKNOWN;
|
||||
switch(hAllocation->GetType())
|
||||
{
|
||||
case VmaAllocation_T::ALLOCATION_TYPE_DEDICATED:
|
||||
@ -15623,7 +15623,7 @@ VkResult VmaAllocator_T::BindImageMemory(
|
||||
VkImage hImage,
|
||||
const void* pNext)
|
||||
{
|
||||
VkResult res = VK_SUCCESS;
|
||||
VkResult res = VK_ERROR_UNKNOWN;
|
||||
switch(hAllocation->GetType())
|
||||
{
|
||||
case VmaAllocation_T::ALLOCATION_TYPE_DEDICATED:
|
||||
|
Loading…
Reference in New Issue
Block a user