DrawInstancedIndirect & DrawIndexedInstanceIndirect impl.

This commit is contained in:
Jean-Baptiste Perrier
2021-04-24 14:29:38 +02:00
parent 52815a4ab0
commit 3fc7073046
2 changed files with 15 additions and 5 deletions

View File

@@ -1704,7 +1704,7 @@ bool GPUDeviceVulkan::Init()
limits.HasGeometryShaders = false; // TODO: add geometry shaders support for Vulkan
limits.HasInstancing = true;
limits.HasVolumeTextureRendering = true;
limits.HasDrawIndirect = false; // TODO: add Draw Indirect support for Vulkan
limits.HasDrawIndirect = true;
limits.HasAppendConsumeBuffers = false; // TODO: add Append Consume buffers support for Vulkan
limits.HasSeparateRenderTargetBlendState = true;
limits.HasDepthAsSRV = true;