mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 09:23:53 +01:00
90 lines
3.1 KiB
C++
90 lines
3.1 KiB
C++
|
#include "d3d11_depth_stencil.h"
|
||
|
#include "d3d11_device.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
D3D11DepthStencilState::D3D11DepthStencilState(
|
||
|
D3D11Device* device,
|
||
|
const D3D11_DEPTH_STENCIL_DESC& desc)
|
||
|
: m_device(device), m_desc(desc) {
|
||
|
m_state.enableDepthTest = desc.DepthEnable;
|
||
|
m_state.enableDepthWrite = desc.DepthWriteMask == D3D11_DEPTH_WRITE_MASK_ALL;
|
||
|
m_state.enableDepthBounds = false; // TODO check if this is correct
|
||
|
m_state.enableStencilTest = desc.StencilEnable;
|
||
|
m_state.depthCompareOp = VK_COMPARE_OP_LESS;
|
||
|
m_state.stencilOpFront = DecodeStencilOpState(desc.FrontFace, desc);
|
||
|
m_state.stencilOpBack = DecodeStencilOpState(desc.BackFace, desc);
|
||
|
m_state.depthBoundsMin = 0.0f;
|
||
|
m_state.depthBoundsMax = 1.0f;
|
||
|
|
||
|
if (desc.DepthEnable)
|
||
|
DecodeCompareOp(desc.DepthFunc);
|
||
|
}
|
||
|
|
||
|
|
||
|
D3D11DepthStencilState::~D3D11DepthStencilState() {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
HRESULT D3D11DepthStencilState::QueryInterface(REFIID riid, void** ppvObject) {
|
||
|
COM_QUERY_IFACE(riid, ppvObject, IUnknown);
|
||
|
COM_QUERY_IFACE(riid, ppvObject, ID3D11DeviceChild);
|
||
|
COM_QUERY_IFACE(riid, ppvObject, ID3D11DepthStencilState);
|
||
|
|
||
|
Logger::warn("D3D11DepthStencilState::QueryInterface: Unknown interface query");
|
||
|
return E_NOINTERFACE;
|
||
|
}
|
||
|
|
||
|
|
||
|
void D3D11DepthStencilState::GetDevice(ID3D11Device** ppDevice) {
|
||
|
*ppDevice = ref(m_device);
|
||
|
}
|
||
|
|
||
|
|
||
|
void D3D11DepthStencilState::GetDesc(D3D11_DEPTH_STENCIL_DESC* pDesc) {
|
||
|
*pDesc = m_desc;
|
||
|
}
|
||
|
|
||
|
|
||
|
VkStencilOpState D3D11DepthStencilState::DecodeStencilOpState(
|
||
|
const D3D11_DEPTH_STENCILOP_DESC& stencilDesc,
|
||
|
const D3D11_DEPTH_STENCIL_DESC& desc) const {
|
||
|
VkStencilOpState result;
|
||
|
result.failOp = VK_STENCIL_OP_KEEP;
|
||
|
result.passOp = VK_STENCIL_OP_KEEP;
|
||
|
result.depthFailOp = VK_STENCIL_OP_KEEP;
|
||
|
result.compareOp = VK_COMPARE_OP_ALWAYS;
|
||
|
result.compareMask = desc.StencilReadMask;
|
||
|
result.writeMask = desc.StencilWriteMask;
|
||
|
result.reference = 0;
|
||
|
|
||
|
if (desc.StencilEnable) {
|
||
|
result.failOp = DecodeStencilOp(stencilDesc.StencilFailOp);
|
||
|
result.passOp = DecodeStencilOp(stencilDesc.StencilPassOp);
|
||
|
result.depthFailOp = DecodeStencilOp(stencilDesc.StencilDepthFailOp);
|
||
|
result.compareOp = DecodeCompareOp(stencilDesc.StencilFunc);
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
VkStencilOp D3D11DepthStencilState::DecodeStencilOp(D3D11_STENCIL_OP op) const {
|
||
|
switch (op) {
|
||
|
case D3D11_STENCIL_OP_KEEP: return VK_STENCIL_OP_KEEP;
|
||
|
case D3D11_STENCIL_OP_ZERO: return VK_STENCIL_OP_ZERO;
|
||
|
case D3D11_STENCIL_OP_REPLACE: return VK_STENCIL_OP_REPLACE;
|
||
|
case D3D11_STENCIL_OP_INCR_SAT: return VK_STENCIL_OP_INCREMENT_AND_CLAMP;
|
||
|
case D3D11_STENCIL_OP_DECR_SAT: return VK_STENCIL_OP_DECREMENT_AND_CLAMP;
|
||
|
case D3D11_STENCIL_OP_INVERT: return VK_STENCIL_OP_INVERT;
|
||
|
case D3D11_STENCIL_OP_INCR: return VK_STENCIL_OP_INCREMENT_AND_WRAP;
|
||
|
case D3D11_STENCIL_OP_DECR: return VK_STENCIL_OP_DECREMENT_AND_WRAP;
|
||
|
}
|
||
|
|
||
|
Logger::err(str::format("D3D11: Invalid stencil op: ", op));
|
||
|
return VK_STENCIL_OP_KEEP;
|
||
|
}
|
||
|
|
||
|
}
|