I'm writing a cel-shading effect in HLSL and Direct3D 11, and I need to be able to flip the culling mode on the outline pass of the effect. I know you do this in XNA by setting CullMode to CW or CCW inside the pass definition, but is that how you do it in D3D11/SlimDX?
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
You can do that by creating rasterizer state and setting it active in context. See D3D11_RASTERIZER_DESC and SlimDX.Direct3D11.RasterizerStateDescription.IsFrontCounterclockwise. And if you use Effect11 framework, then you can do that directly in fx file like this:
|
||||
|
|