Nui Engine
A game engine framework
Loading...
Searching...
No Matches
DepthStencilState.h
1#pragma once
2#include "Graphics/Common.h"
3
4namespace Nui::Graphics::States
5{
10 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilDepthDisabledDesc();
11
16 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilDepthEnabledDesc();
17
22 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilReverseDepthEnabledDesc();
23
28 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilDepthWriteEnabledDesc();
29
34 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilReverseDepthWriteEnabledDesc();
35
40 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilDepthStencilWriteEnabledDesc();
41
46 static constexpr D3D11_DEPTH_STENCIL_DESC GetDepthStencilStencilEnabledDesc();
47}