MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Tools / CreateBufferView

Function CreateBufferView

icd/generated/function_definitions.h:690–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

688 return VK_SUCCESS;
689}
690static 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}
696static VKAPI_ATTR void VKAPI_CALL DestroyBufferView(VkDevice device, VkBufferView bufferView,
697 const VkAllocationCallbacks* pAllocator) {
698 // Destroy object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected