2021-09-30 10:03:35 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
2021-12-07 15:48:07 +00:00
|
|
|
<Type Name="VmaRawList<*>">
|
|
|
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[Count]">m_Count</Item>
|
|
|
|
<LinkedListItems>
|
|
|
|
<Size>m_Count</Size>
|
|
|
|
<HeadPointer>m_pFront</HeadPointer>
|
|
|
|
<NextPointer>pNext</NextPointer>
|
|
|
|
<ValueNode>Value</ValueNode>
|
|
|
|
</LinkedListItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
2021-09-30 10:03:35 +00:00
|
|
|
|
2021-12-07 15:48:07 +00:00
|
|
|
<Type Name="VmaList<*>">
|
|
|
|
<DisplayString>{{ Count={m_RawList.m_Count} }}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[Count]">m_RawList.m_Count</Item>
|
|
|
|
<LinkedListItems>
|
|
|
|
<Size>m_RawList.m_Count</Size>
|
|
|
|
<HeadPointer>m_RawList.m_pFront</HeadPointer>
|
|
|
|
<NextPointer>pNext</NextPointer>
|
|
|
|
<ValueNode>Value</ValueNode>
|
|
|
|
</LinkedListItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
2021-09-30 10:03:35 +00:00
|
|
|
|
2021-12-07 15:48:07 +00:00
|
|
|
<Type Name="VmaVector<*>">
|
|
|
|
<DisplayString>{{ Count={m_Count} }}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[Count]">m_Count</Item>
|
|
|
|
<Item Name="[Capacity]">m_Capacity</Item>
|
|
|
|
<ArrayItems>
|
|
|
|
<Size>m_Count</Size>
|
|
|
|
<ValuePointer>m_pArray</ValuePointer>
|
|
|
|
</ArrayItems>
|
|
|
|
</Expand>
|
|
|
|
</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>
|
2017-09-20 11:27:21 +00:00
|
|
|
</AutoVisualizer>
|