diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-10-17 04:06:08 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-10-17 04:06:08 +0000 |
| commit | bc4a29a1fac0276e499bb37bb3c449ebdcacbe92 (patch) | |
| tree | 50316f6b243300fdf9ef25afe1aad5d619ccfa08 /Graphics/GraphicsEngineVulkan | |
| parent | Added option to install PDB files on Windows (closed https://github.com/Dilig... (diff) | |
| download | DiligentCore-bc4a29a1fac0276e499bb37bb3c449ebdcacbe92.tar.gz DiligentCore-bc4a29a1fac0276e499bb37bb3c449ebdcacbe92.zip | |
A bunch of updates to specify minimum feature level for D3D11/D3D12 backends and to enable bindless mode (API version 240032)
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp index 232a8167..221a1bea 100644 --- a/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp @@ -149,6 +149,7 @@ RenderDeviceVkImpl :: RenderDeviceVkImpl(IReferenceCounters* m_DeviceCaps.bGeometryShadersSupported = EngineCI.EnabledFeatures.geometryShader; m_DeviceCaps.bTessellationSupported = EngineCI.EnabledFeatures.tessellationShader; + m_DeviceCaps.bBindlessSupported = True; } RenderDeviceVkImpl::~RenderDeviceVkImpl() |
