summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-04-14 20:51:22 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-04-14 20:51:22 +0000
commit7abb3ee4d983defe9c7036bf526f9a64a22545ff (patch)
tree6bc451ffba5e47162c88710fbf44bbb1709b7a67 /Graphics/GraphicsEngine
parentMoved primitive topology from draw attribs to pipeline state desc (diff)
downloadDiligentCore-7abb3ee4d983defe9c7036bf526f9a64a22545ff.tar.gz
DiligentCore-7abb3ee4d983defe9c7036bf526f9a64a22545ff.zip
Fixed few warnings on clang
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/RasterizerState.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Graphics/GraphicsEngine/interface/RasterizerState.h b/Graphics/GraphicsEngine/interface/RasterizerState.h
index eb548bba..599e742f 100644
--- a/Graphics/GraphicsEngine/interface/RasterizerState.h
+++ b/Graphics/GraphicsEngine/interface/RasterizerState.h
@@ -145,12 +145,12 @@ struct RasterizerStateDesc
FillMode ( _FillMode ),
CullMode ( _CullMode ),
FrontCounterClockwise( _FrontCounterClockwise ),
- DepthBias ( _DepthBias ),
- DepthBiasClamp ( _DepthBiasClamp ),
- SlopeScaledDepthBias ( _SlopeScaledDepthBias ),
DepthClipEnable ( _DepthClipEnable ),
ScissorEnable ( _ScissorEnable ),
- AntialiasedLineEnable( _AntialiasedLineEnable )
+ AntialiasedLineEnable( _AntialiasedLineEnable ),
+ DepthBias ( _DepthBias ),
+ DepthBiasClamp ( _DepthBiasClamp ),
+ SlopeScaledDepthBias ( _SlopeScaledDepthBias )
{
}