summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-08 03:19:04 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-08 03:19:04 +0000
commitc2a9e830175d658bf6862b3456228b9b1ce3804a (patch)
tree59a2af293d8161863bb074b43cfaa8e2bdd2d5d3 /Graphics/GraphicsEngineD3D12
parentMerge branch 'master' of https://github.com/DiligentGraphics/DiligentCore.git (diff)
downloadDiligentCore-c2a9e830175d658bf6862b3456228b9b1ce3804a.tar.gz
DiligentCore-c2a9e830175d658bf6862b3456228b9b1ce3804a.zip
Finished reworking device feature reporting; removed EngineVkCreateInfo::DeviceFeatures structure.
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/src/RenderDeviceD3D12Impl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/RenderDeviceD3D12Impl.cpp b/Graphics/GraphicsEngineD3D12/src/RenderDeviceD3D12Impl.cpp
index 8177f67b..1a96690e 100644
--- a/Graphics/GraphicsEngineD3D12/src/RenderDeviceD3D12Impl.cpp
+++ b/Graphics/GraphicsEngineD3D12/src/RenderDeviceD3D12Impl.cpp
@@ -179,6 +179,8 @@ RenderDeviceD3D12Impl::RenderDeviceD3D12Impl(IReferenceCounters* pRefCo
// https://docs.microsoft.com/en-us/windows/win32/direct3d12/hardware-feature-levels#feature-level-support
m_DeviceCaps.Features.BindlessResources = True;
+ m_DeviceCaps.Features.VertexPipelineUAVWritesAndAtomics = True;
+
auto& TexCaps = m_DeviceCaps.TexCaps;
TexCaps.MaxTexture1DDimension = D3D12_REQ_TEXTURE1D_U_DIMENSION;