6#include <unordered_set>
13#include "render/directx/descriptors/DirectXDescriptor.h"
14#include "render/general/resource/GpuResource.h"
15#include "DirectXDescriptorType.hpp"
18#include "directx/d3dx12.h"
19#include "misc/Error.h"
25 using namespace Microsoft::WRL;
27 class DirectXRenderer;
28 class DirectXResource;
29 class DirectXDescriptorHeap;
32 enum class DescriptorHeapType :
int {
292 static std::variant<std::unique_ptr<DirectXDescriptorHeap>,
Error>
305 std::variant<std::unique_ptr<ContinuousDirectXDescriptorRange>,
Error>
307 const std::string& sRangeName,
const std::function<
void()>& onRangeIndicesChanged);
410 CD3DX12_CPU_DESCRIPTOR_HANDLE heapHandle,
412 DirectXDescriptorType descriptorType,
413 std::optional<size_t> cubemapFaceIndex)
const;
440 [[nodiscard]] std::variant<bool, Error>
455 [[nodiscard]] std::optional<Error>
497 DirectXDescriptorType descriptorType,
499 bool bBindDescriptorsToCubemapFaces =
true);
Definition: DirectXDescriptorHeap.h:44
size_t getRangeSize()
Definition: DirectXDescriptorHeap.cpp:1090
const std::string sRangeName
Definition: DirectXDescriptorHeap.h:197
std::variant< std::optional< INT >, Error > tryReserveFreeHeapIndexToCreateDescriptor()
Definition: DirectXDescriptorHeap.cpp:1152
INT getRangeStartInHeap()
Definition: DirectXDescriptorHeap.cpp:1100
size_t getRangeCapacity()
Definition: DirectXDescriptorHeap.cpp:1095
D3D12_GPU_DESCRIPTOR_HANDLE getGpuDescriptorHandleToRangeStart() const
Definition: DirectXDescriptorHeap.cpp:1105
const std::function< void()> onRangeIndicesChanged
Definition: DirectXDescriptorHeap.h:194
DirectXDescriptorHeap *const pHeap
Definition: DirectXDescriptorHeap.h:200
std::optional< Error > markDescriptorAsUnused(DirectXDescriptor *pDescriptor)
Definition: DirectXDescriptorHeap.cpp:1130
static constexpr INT iRangeGrowSize
Definition: DirectXDescriptorHeap.h:207
std::variant< unsigned int, Error > getResourceDescriptorOffsetFromRangeStart(DirectXResource *pResource, DirectXDescriptorType descriptorType)
Definition: DirectXDescriptorHeap.cpp:1048
static constexpr INT getRangeGrowSize()
Definition: DirectXDescriptorHeap.h:68
std::pair< std::recursive_mutex, InternalData > mtxInternalData
Definition: DirectXDescriptorHeap.h:191
Definition: DirectXDescriptorHeap.h:211
INT getHeapSize()
Definition: DirectXDescriptorHeap.cpp:217
static std::string convertHeapTypeToString(DescriptorHeapType heapType)
Definition: DirectXDescriptorHeap.cpp:227
void onDescriptorRangeBeingDestroyed(ContinuousDirectXDescriptorRange *pRange)
Definition: DirectXDescriptorHeap.cpp:427
static std::variant< std::unique_ptr< DirectXDescriptorHeap >, Error > create(DirectXRenderer *pRenderer, DescriptorHeapType heapType)
Definition: DirectXDescriptorHeap.cpp:11
DirectXRenderer * pRenderer
Definition: DirectXDescriptorHeap.h:522
static constexpr INT getHeapGrowSize()
Definition: DirectXDescriptorHeap.h:282
void onDescriptorBeingDestroyed(DirectXDescriptor *pDescriptor, ContinuousDirectXDescriptorRange *pRange=nullptr)
Definition: DirectXDescriptorHeap.cpp:320
D3D12_DESCRIPTOR_HEAP_TYPE d3dHeapType
Definition: DirectXDescriptorHeap.h:537
std::string sHeapType
Definition: DirectXDescriptorHeap.h:534
std::optional< Error > expandRange(ContinuousDirectXDescriptorRange *pRange)
Definition: DirectXDescriptorHeap.cpp:542
std::variant< bool, Error > shrinkHeapIfPossible(ContinuousDirectXDescriptorRange *pChangedRange)
Definition: DirectXDescriptorHeap.cpp:574
~DirectXDescriptorHeap()
Definition: DirectXDescriptorHeap.cpp:286
std::vector< DirectXDescriptorType > getDescriptorTypesHandledByThisHeap() const
Definition: DirectXDescriptorHeap.cpp:912
UINT getDescriptorSize() const
Definition: DirectXDescriptorHeap.h:341
std::optional< Error > assignDescriptor(DirectXResource *pResource, DirectXDescriptorType descriptorType, ContinuousDirectXDescriptorRange *pRange=nullptr, bool bBindDescriptorsToCubemapFaces=true)
Definition: DirectXDescriptorHeap.cpp:47
static bool isShrinkingPossible(INT iSize, INT iCapacity, INT iGrowSize)
Definition: DirectXDescriptorHeap.cpp:520
std::pair< std::recursive_mutex, InternalData > mtxInternalData
Definition: DirectXDescriptorHeap.h:525
DescriptorHeapType heapType
Definition: DirectXDescriptorHeap.h:531
std::pair< std::recursive_mutex, InternalData > * getInternalData()
Definition: DirectXDescriptorHeap.h:357
std::variant< std::unique_ptr< ContinuousDirectXDescriptorRange >, Error > allocateContinuousDescriptorRange(const std::string &sRangeName, const std::function< void()> &onRangeIndicesChanged)
Definition: DirectXDescriptorHeap.cpp:25
std::optional< Error > expandHeap(ContinuousDirectXDescriptorRange *pChangedRange)
Definition: DirectXDescriptorHeap.cpp:472
size_t getNoLongerUsedDescriptorCount()
Definition: DirectXDescriptorHeap.cpp:222
std::optional< Error > rebindViewsUpdateIndices()
Definition: DirectXDescriptorHeap.cpp:927
UINT iDescriptorSize
Definition: DirectXDescriptorHeap.h:528
ID3D12DescriptorHeap * getInternalHeap() const
Definition: DirectXDescriptorHeap.h:348
void createView(CD3DX12_CPU_DESCRIPTOR_HANDLE heapHandle, const DirectXResource *pResource, DirectXDescriptorType descriptorType, std::optional< size_t > cubemapFaceIndex) const
Definition: DirectXDescriptorHeap.cpp:596
INT getHeapCapacity()
Definition: DirectXDescriptorHeap.cpp:212
static constexpr INT iHeapGrowSize
Definition: DirectXDescriptorHeap.h:540
std::optional< Error > createHeap(INT iCapacity, ContinuousDirectXDescriptorRange *pChangedRange)
Definition: DirectXDescriptorHeap.cpp:859
Definition: DirectXDescriptor.h:18
Definition: DirectXRenderer.h:36
Definition: DirectXResource.h:32
Definition: DirectXDescriptorHeap.h:116
std::unordered_set< DirectXDescriptor * > allocatedDescriptors
Definition: DirectXDescriptorHeap.h:125
INT iRangeStartInHeap
Definition: DirectXDescriptorHeap.h:136
INT iRangeCapacity
Definition: DirectXDescriptorHeap.h:139
std::queue< INT > noLongerUsedDescriptorIndices
Definition: DirectXDescriptorHeap.h:128
INT iNextFreeIndexInRange
Definition: DirectXDescriptorHeap.h:149
Definition: DirectXDescriptorHeap.h:223
std::queue< INT > noLongerUsedSingleDescriptorIndices
Definition: DirectXDescriptorHeap.h:256
std::unordered_set< ContinuousDirectXDescriptorRange * > continuousDescriptorRanges
Definition: DirectXDescriptorHeap.h:228
std::unordered_set< DirectXDescriptor * > bindedSingleDescriptors
Definition: DirectXDescriptorHeap.h:267
INT iNextFreeHeapIndex
Definition: DirectXDescriptorHeap.h:248
INT iHeapCapacity
Definition: DirectXDescriptorHeap.h:231
INT iHeapSize
Definition: DirectXDescriptorHeap.h:238
ComPtr< ID3D12DescriptorHeap > pHeap
Definition: DirectXDescriptorHeap.h:225