diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-01-21 02:08:50 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-01-21 02:08:50 +0000 |
| commit | f2603cc9aca1e668ad79dfb87244ae9351953909 (patch) | |
| tree | 3640bfc7819e9733c7bb222b95ec9d8a4893fc9b /Graphics/GraphicsEngine | |
| parent | Minor update to CMakeLists (diff) | |
| download | DiligentCore-f2603cc9aca1e668ad79dfb87244ae9351953909.tar.gz DiligentCore-f2603cc9aca1e668ad79dfb87244ae9351953909.zip | |
Fixed MacOS issues
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) {} }; } |
