summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3DBase
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngineD3DBase')
-rw-r--r--Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h
index a6b2a3c4..143ce33d 100644
--- a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h
+++ b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h
@@ -154,6 +154,20 @@ public:
FLAG_FORMAT(TEX_FORMAT_BC7_UNORM_SRGB, true);
#undef FLAG_FORMAT
// clang-format on
+
+ auto& Features = this->m_DeviceCaps.Features;
+
+ Features.SeparablePrograms = True;
+ Features.IndirectRendering = True;
+ Features.WireframeFill = True;
+ Features.MultithreadedResourceCreation = True;
+ Features.ComputeShaders = True;
+ Features.GeometryShaders = True;
+ Features.Tessellation = True;
+ Features.OcclusionQueries = True;
+ Features.BinaryOcclusionQueries = True;
+ Features.TimestampQueries = True;
+ Features.PipelineStatisticsQueries = True;
}
};