summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-01-21 02:08:50 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-01-21 02:08:50 +0000
commitf2603cc9aca1e668ad79dfb87244ae9351953909 (patch)
tree3640bfc7819e9733c7bb222b95ec9d8a4893fc9b /Graphics/GraphicsEngine
parentMinor update to CMakeLists (diff)
downloadDiligentCore-f2603cc9aca1e668ad79dfb87244ae9351953909.tar.gz
DiligentCore-f2603cc9aca1e668ad79dfb87244ae9351953909.zip
Fixed MacOS issues
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/DeviceCaps.h6
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)
{}
};
}