mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-24 21:01:15 +00:00
Update vk_mem_alloc as the old version did not support all the flags needed for ray tracing
This commit is contained in:
parent
1b29ef02b9
commit
ce376eb558
3 changed files with 13337 additions and 2801 deletions
7
thirdparty/vk_mem_alloc/vk_mem_alloc.cpp
vendored
7
thirdparty/vk_mem_alloc/vk_mem_alloc.cpp
vendored
|
@ -1,7 +1,8 @@
|
|||
#pragma pack(push, 8)
|
||||
#include "../volk/volk.h"
|
||||
#include "volk/volk.h"
|
||||
#define VMA_IMPLEMENTATION
|
||||
#define VMA_STATIC_VULKAN_FUNCTIONS 1
|
||||
|
||||
#define VMA_NULLABLE
|
||||
#define VMA_NOT_NULL
|
||||
|
||||
#include "vk_mem_alloc.h"
|
||||
#pragma pack(pop)
|
||||
|
|
16091
thirdparty/vk_mem_alloc/vk_mem_alloc.h
vendored
16091
thirdparty/vk_mem_alloc/vk_mem_alloc.h
vendored
File diff suppressed because it is too large
Load diff
40
thirdparty/vk_mem_alloc/vk_mem_alloc.natvis
vendored
Normal file
40
thirdparty/vk_mem_alloc/vk_mem_alloc.natvis
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
||||
<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>
|
||||
|
||||
<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>
|
||||
|
||||
<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>
|
||||
</AutoVisualizer>
|
Loading…
Reference in a new issue