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 …]
120 VmaAllocationCreateInfo allocationCreateInfo = {}; in CreateBuffer() local121 allocationCreateInfo.requiredFlags = requiredFlags; in CreateBuffer()122 allocationCreateInfo.preferredFlags = preferredFlags; in CreateBuffer()123 allocationCreateInfo.flags = (persistentlyMapped) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in CreateBuffer()126 result = vmaCreateBuffer(allocator, pBufferCreateInfo, &allocationCreateInfo, pBuffer, in CreateBuffer()140 VmaAllocationCreateInfo allocationCreateInfo = {}; in FindMemoryTypeIndexForBufferInfo() local141 allocationCreateInfo.requiredFlags = requiredFlags; in FindMemoryTypeIndexForBufferInfo()142 allocationCreateInfo.preferredFlags = preferredFlags; in FindMemoryTypeIndexForBufferInfo()143 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in FindMemoryTypeIndexForBufferInfo()145 return vmaFindMemoryTypeIndexForBufferInfo(allocator, pBufferCreateInfo, &allocationCreateInfo, in FindMemoryTypeIndexForBufferInfo()