From f2603cc9aca1e668ad79dfb87244ae9351953909 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sat, 20 Jan 2018 18:08:50 -0800 Subject: Fixed MacOS issues --- Graphics/GraphicsEngine/interface/DeviceCaps.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngine') 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) {} }; } -- cgit v1.2.3