diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-02-01 17:46:49 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-02-01 17:47:12 +0000 |
| commit | 59082686112144343073de75986dbb8076b35689 (patch) | |
| tree | 8b8932258ab952eb13b3fdc3ba13d77156d42e59 /Graphics/GraphicsEngine | |
| parent | Added info about MacOS to readme (diff) | |
| download | DiligentCore-59082686112144343073de75986dbb8076b35689.tar.gz DiligentCore-59082686112144343073de75986dbb8076b35689.zip | |
Enabled IOS build
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/interface/DeviceCaps.h | 10 |
1 files changed, 9 insertions, 1 deletions
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) {} }; } |
