| 688 | return VK_SUCCESS; |
| 689 | } |
| 690 | static VKAPI_ATTR VkResult VKAPI_CALL CreateBufferView(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, |
| 691 | const VkAllocationCallbacks* pAllocator, VkBufferView* pView) { |
| 692 | unique_lock_t lock(global_lock); |
| 693 | *pView = (VkBufferView)global_unique_handle++; |
| 694 | return VK_SUCCESS; |
| 695 | } |
| 696 | static VKAPI_ATTR void VKAPI_CALL DestroyBufferView(VkDevice device, VkBufferView bufferView, |
| 697 | const VkAllocationCallbacks* pAllocator) { |
| 698 | // Destroy object |
nothing calls this directly
no outgoing calls
no test coverage detected