diff options
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/interface/DeviceCaps.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/interface/DeviceCaps.h b/Graphics/GraphicsEngine/interface/DeviceCaps.h index 79164276..79c2e24f 100644 --- a/Graphics/GraphicsEngine/interface/DeviceCaps.h +++ b/Graphics/GraphicsEngine/interface/DeviceCaps.h @@ -118,6 +118,9 @@ namespace Diligent /// Indicates if device supports multithreaded resource creation Bool bMultithreadedResourceCreationSupported; + /// Indicates if device supports compute shaders + Bool bComputeShadersSupported; + /// Texture sampling capabilities. See Diligent::SamplerCaps. SamplerCaps SamCaps; @@ -132,7 +135,8 @@ namespace Diligent bSeparableProgramSupported( True ), bIndirectRenderingSupported( True ), bWireframeFillSupported( True ), - bMultithreadedResourceCreationSupported( False ) + bMultithreadedResourceCreationSupported( False ), + bComputeShadersSupported(True) {} }; } |
