summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2017-07-05 10:02:38 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2017-07-05 10:04:29 -0700
commitbd4b420e6784fe55b32cadea8401aa69b40560cf (patch)
tree787504a0078d432ef90a35b2a91f1060d15ce88d
parentf3a794a0ad4afdf983000fc7ce2cc22e4116c6a5 (diff)
qonos: pass pNext through in AllocateMemoryFromRequirements
-rw-r--r--src/qonos/qonos.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qonos/qonos.c b/src/qonos/qonos.c
index 3839752..a1c7307 100644
--- a/src/qonos/qonos.c
+++ b/src/qonos/qonos.c
@@ -145,6 +145,7 @@ __qoAllocMemoryFromRequirements(VkDevice dev,
{
VkMemoryAllocateInfo alloc_info = {
.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO,
+ .pNext = info->pNext,
.allocationSize = info->allocationSize,
.memoryTypeIndex = info->memoryTypeIndex,
};