summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-02-01 17:46:49 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-02-01 17:47:12 +0000
commit59082686112144343073de75986dbb8076b35689 (patch)
tree8b8932258ab952eb13b3fdc3ba13d77156d42e59 /Graphics/GraphicsEngine
parentAdded info about MacOS to readme (diff)
downloadDiligentCore-59082686112144343073de75986dbb8076b35689.tar.gz
DiligentCore-59082686112144343073de75986dbb8076b35689.zip
Enabled IOS build
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/DeviceCaps.h10
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)
{}
};
}