diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-07 18:43:31 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-07 18:43:31 +0000 |
| commit | d96453fea9e425997ed33e4fed18f31884069343 (patch) | |
| tree | 011c9d3ab77f5df892ffdae7eb1eb87de0e46063 /Graphics/GraphicsEngineD3DBase | |
| parent | Improved reporting of device capabilities (fixed https://github.com/DiligentG... (diff) | |
| download | DiligentCore-d96453fea9e425997ed33e4fed18f31884069343.tar.gz DiligentCore-d96453fea9e425997ed33e4fed18f31884069343.zip | |
Improved device capabilities reporting
Diffstat (limited to 'Graphics/GraphicsEngineD3DBase')
| -rw-r--r-- | Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h index 143ce33d..249bdf4a 100644 --- a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h +++ b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h @@ -168,6 +168,11 @@ public: Features.BinaryOcclusionQueries = True; Features.TimestampQueries = True; Features.PipelineStatisticsQueries = True; + Features.DepthBiasClamp = True; + Features.DepthClamp = True; + Features.IndependentBlend = True; + Features.DualSourceBlend = True; + Features.MultiViewport = True; } }; |
