From 59082686112144343073de75986dbb8076b35689 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 1 Feb 2018 09:46:49 -0800 Subject: Enabled IOS build --- Graphics/GraphicsEngine/interface/DeviceCaps.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/interface/DeviceCaps.h b/Graphics/GraphicsEngine/interface/DeviceCaps.h index 79c2e24f..bca44c1a 100644 --- a/Graphics/GraphicsEngine/interface/DeviceCaps.h +++ b/Graphics/GraphicsEngine/interface/DeviceCaps.h @@ -121,6 +121,12 @@ namespace Diligent /// Indicates if device supports compute shaders Bool bComputeShadersSupported; + /// Indicates if device supports geometry shaders + Bool bGeometryShadersSupported; + + /// Indicates if device supports tessellation + Bool bTessellationSupported; + /// Texture sampling capabilities. See Diligent::SamplerCaps. SamplerCaps SamCaps; @@ -136,7 +142,9 @@ namespace Diligent bIndirectRenderingSupported( True ), bWireframeFillSupported( True ), bMultithreadedResourceCreationSupported( False ), - bComputeShadersSupported(True) + bComputeShadersSupported(True), + bGeometryShadersSupported(True), + bTessellationSupported(True) {} }; } -- cgit v1.2.3