Update VulkanMemoryAllocator to version3.1.0
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2017-2021 Advanced Micro Devices, Inc. All rights reserved.
|
Copyright (c) 2017-2024 Advanced Micro Devices, Inc. All rights reserved.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
26122
Source/ThirdParty/VulkanMemoryAllocator/vk_mem_alloc.h
vendored
26122
Source/ThirdParty/VulkanMemoryAllocator/vk_mem_alloc.h
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,40 +1,71 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
||||||
<Type Name="VmaRawList<*>">
|
<Type Name="VmaRawList<*>">
|
||||||
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
||||||
<Expand>
|
<Expand>
|
||||||
<Item Name="[Count]">m_Count</Item>
|
<Item Name="[Count]">m_Count</Item>
|
||||||
<LinkedListItems>
|
<LinkedListItems>
|
||||||
<Size>m_Count</Size>
|
<Size>m_Count</Size>
|
||||||
<HeadPointer>m_pFront</HeadPointer>
|
<HeadPointer>m_pFront</HeadPointer>
|
||||||
<NextPointer>pNext</NextPointer>
|
<NextPointer>pNext</NextPointer>
|
||||||
<ValueNode>Value</ValueNode>
|
<ValueNode>Value</ValueNode>
|
||||||
</LinkedListItems>
|
</LinkedListItems>
|
||||||
</Expand>
|
</Expand>
|
||||||
</Type>
|
</Type>
|
||||||
|
|
||||||
<Type Name="VmaList<*>">
|
<Type Name="VmaList<*>">
|
||||||
<DisplayString>{{ Count={m_RawList.m_Count} }}</DisplayString>
|
<DisplayString>{{ Count={m_RawList.m_Count} }}</DisplayString>
|
||||||
<Expand>
|
<Expand>
|
||||||
<Item Name="[Count]">m_RawList.m_Count</Item>
|
<Item Name="[Count]">m_RawList.m_Count</Item>
|
||||||
<LinkedListItems>
|
<LinkedListItems>
|
||||||
<Size>m_RawList.m_Count</Size>
|
<Size>m_RawList.m_Count</Size>
|
||||||
<HeadPointer>m_RawList.m_pFront</HeadPointer>
|
<HeadPointer>m_RawList.m_pFront</HeadPointer>
|
||||||
<NextPointer>pNext</NextPointer>
|
<NextPointer>pNext</NextPointer>
|
||||||
<ValueNode>Value</ValueNode>
|
<ValueNode>Value</ValueNode>
|
||||||
</LinkedListItems>
|
</LinkedListItems>
|
||||||
</Expand>
|
</Expand>
|
||||||
</Type>
|
</Type>
|
||||||
|
|
||||||
<Type Name="VmaVector<*>">
|
<Type Name="VmaVector<*>">
|
||||||
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
||||||
<Expand>
|
<Expand>
|
||||||
<Item Name="[Count]">m_Count</Item>
|
<Item Name="[Count]">m_Count</Item>
|
||||||
<Item Name="[Capacity]">m_Capacity</Item>
|
<Item Name="[Capacity]">m_Capacity</Item>
|
||||||
<ArrayItems>
|
<ArrayItems>
|
||||||
<Size>m_Count</Size>
|
<Size>m_Count</Size>
|
||||||
<ValuePointer>m_pArray</ValuePointer>
|
<ValuePointer>m_pArray</ValuePointer>
|
||||||
</ArrayItems>
|
</ArrayItems>
|
||||||
</Expand>
|
</Expand>
|
||||||
</Type>
|
</Type>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Due to custom way of accesing next items in
|
||||||
|
VmaIntrusiveLinkedList via methods in provided type traits,
|
||||||
|
every specialization must be manually added with
|
||||||
|
custom <NextPointer> field describing proper way of iterating the list.
|
||||||
|
-->
|
||||||
|
<Type Name="VmaIntrusiveLinkedList<VmaDedicatedAllocationListItemTraits>">
|
||||||
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
||||||
|
<Expand>
|
||||||
|
<Item Name="[Count]">m_Count</Item>
|
||||||
|
<LinkedListItems>
|
||||||
|
<Size>m_Count</Size>
|
||||||
|
<HeadPointer>m_Front</HeadPointer>
|
||||||
|
<NextPointer>m_DedicatedAllocation.m_Next</NextPointer>
|
||||||
|
<ValueNode>*this</ValueNode>
|
||||||
|
</LinkedListItems>
|
||||||
|
</Expand>
|
||||||
|
</Type>
|
||||||
|
<Type Name="VmaIntrusiveLinkedList<VmaPoolListItemTraits>">
|
||||||
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
||||||
|
<Expand>
|
||||||
|
<Item Name="[Count]">m_Count</Item>
|
||||||
|
<LinkedListItems>
|
||||||
|
<Size>m_Count</Size>
|
||||||
|
<HeadPointer>m_Front</HeadPointer>
|
||||||
|
<NextPointer>m_NextPool</NextPointer>
|
||||||
|
<ValueNode>*this</ValueNode>
|
||||||
|
</LinkedListItems>
|
||||||
|
</Expand>
|
||||||
|
</Type>
|
||||||
</AutoVisualizer>
|
</AutoVisualizer>
|
||||||
Reference in New Issue
Block a user