Searched refs:allocationCreateInfo (Results 1 – 2 of 2) sorted by relevance
115 - allocationCreateInfo.flags : uint32116 - allocationCreateInfo.usage : uint32117 - allocationCreateInfo.requiredFlags : uint32118 - allocationCreateInfo.preferredFlags : uint32119 - allocationCreateInfo.memoryTypeBits : uint32120 - allocationCreateInfo.pool : pointer122 - allocationCreateInfo.pUserData : string (may contain additional commas)143 - allocationCreateInfo.flags : uint32144 - allocationCreateInfo.usage : uint32145 - allocationCreateInfo.requiredFlags : uint32[all …]
90 VmaAllocationCreateInfo allocationCreateInfo = {}; in CreateBuffer() local91 allocationCreateInfo.requiredFlags = requiredFlags; in CreateBuffer()92 allocationCreateInfo.preferredFlags = preferredFlags; in CreateBuffer()93 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in CreateBuffer()96 result = vmaCreateBuffer(allocator, pBufferCreateInfo, &allocationCreateInfo, pBuffer, in CreateBuffer()110 VmaAllocationCreateInfo allocationCreateInfo = {}; in FindMemoryTypeIndexForBufferInfo() local111 allocationCreateInfo.requiredFlags = requiredFlags; in FindMemoryTypeIndexForBufferInfo()112 allocationCreateInfo.preferredFlags = preferredFlags; in FindMemoryTypeIndexForBufferInfo()113 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in FindMemoryTypeIndexForBufferInfo()115 return vmaFindMemoryTypeIndexForBufferInfo(allocator, pBufferCreateInfo, &allocationCreateInfo, in FindMemoryTypeIndexForBufferInfo()