Nui Engine
A game engine framework
Loading...
Searching...
No Matches
RasterizerState.h
1#pragma once
2#include "Graphics/Common.h"
3
4namespace Nui::Graphics::States
5{
10 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateNoCullDesc();
11
16 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateFrontFaceCullDesc();
17
22 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateFrontFaceCullScissorDesc();
23
28 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateBackFaceCullDesc();
29
34 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateBackFaceCullScissorDesc();
35
40 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateNoCullNoMSDesc();
41
46 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateNoCullScissorDesc();
47
52 static constexpr D3D11_RASTERIZER_DESC GetRasterizerStateWireframeDesc();
53}