diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-04-14 20:51:22 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-04-14 20:51:22 +0000 |
| commit | 7abb3ee4d983defe9c7036bf526f9a64a22545ff (patch) | |
| tree | 6bc451ffba5e47162c88710fbf44bbb1709b7a67 /Graphics/GraphicsEngine | |
| parent | Moved primitive topology from draw attribs to pipeline state desc (diff) | |
| download | DiligentCore-7abb3ee4d983defe9c7036bf526f9a64a22545ff.tar.gz DiligentCore-7abb3ee4d983defe9c7036bf526f9a64a22545ff.zip | |
Fixed few warnings on clang
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/interface/RasterizerState.h | 8 |
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 ) { } |
