mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-04 07:24:15 +01:00
[d3d9] Set depth bias values separately, optimize redundant rasterizer state changes
This commit is contained in:
parent
b376417f20
commit
2d7f4b1a2c
@ -1658,6 +1658,8 @@ namespace dxvk {
|
|||||||
bool changed = states[State] != Value;
|
bool changed = states[State] != Value;
|
||||||
|
|
||||||
if (likely(changed)) {
|
if (likely(changed)) {
|
||||||
|
const bool oldDepthBiasEnabled = IsDepthBiasEnabled();
|
||||||
|
|
||||||
const bool oldATOC = IsAlphaToCoverageEnabled();
|
const bool oldATOC = IsAlphaToCoverageEnabled();
|
||||||
const bool oldNVDB = states[D3DRS_ADAPTIVETESS_X] == uint32_t(D3D9Format::NVDB);
|
const bool oldNVDB = states[D3DRS_ADAPTIVETESS_X] == uint32_t(D3D9Format::NVDB);
|
||||||
const bool oldAlphaTest = IsAlphaTestEnabled();
|
const bool oldAlphaTest = IsAlphaTestEnabled();
|
||||||
@ -1808,7 +1810,17 @@ namespace dxvk {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case D3DRS_DEPTHBIAS:
|
case D3DRS_DEPTHBIAS:
|
||||||
case D3DRS_SLOPESCALEDEPTHBIAS:
|
case D3DRS_SLOPESCALEDEPTHBIAS: {
|
||||||
|
const bool depthBiasEnabled = IsDepthBiasEnabled();
|
||||||
|
|
||||||
|
if (depthBiasEnabled != oldDepthBiasEnabled)
|
||||||
|
m_flags.set(D3D9DeviceFlag::DirtyRasterizerState);
|
||||||
|
|
||||||
|
if (depthBiasEnabled)
|
||||||
|
m_flags.set(D3D9DeviceFlag::DirtyDepthBias);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
case D3DRS_CULLMODE:
|
case D3DRS_CULLMODE:
|
||||||
case D3DRS_FILLMODE:
|
case D3DRS_FILLMODE:
|
||||||
m_flags.set(D3D9DeviceFlag::DirtyRasterizerState);
|
m_flags.set(D3D9DeviceFlag::DirtyRasterizerState);
|
||||||
@ -5063,6 +5075,27 @@ namespace dxvk {
|
|||||||
void D3D9DeviceEx::BindRasterizerState() {
|
void D3D9DeviceEx::BindRasterizerState() {
|
||||||
m_flags.clr(D3D9DeviceFlag::DirtyRasterizerState);
|
m_flags.clr(D3D9DeviceFlag::DirtyRasterizerState);
|
||||||
|
|
||||||
|
auto& rs = m_state.renderStates;
|
||||||
|
|
||||||
|
DxvkRasterizerState state;
|
||||||
|
state.cullMode = DecodeCullMode(D3DCULL(rs[D3DRS_CULLMODE]));
|
||||||
|
state.depthBiasEnable = IsDepthBiasEnabled();
|
||||||
|
state.depthClipEnable = true;
|
||||||
|
state.frontFace = VK_FRONT_FACE_CLOCKWISE;
|
||||||
|
state.polygonMode = DecodeFillMode(D3DFILLMODE(rs[D3DRS_FILLMODE]));
|
||||||
|
state.sampleCount = 0;
|
||||||
|
|
||||||
|
EmitCs([
|
||||||
|
cState = state
|
||||||
|
](DxvkContext* ctx) {
|
||||||
|
ctx->setRasterizerState(cState);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void D3D9DeviceEx::BindDepthBias() {
|
||||||
|
m_flags.clr(D3D9DeviceFlag::DirtyDepthBias);
|
||||||
|
|
||||||
// TODO: Can we get a specific non-magic number in Vulkan for this based on device/adapter?
|
// TODO: Can we get a specific non-magic number in Vulkan for this based on device/adapter?
|
||||||
constexpr float DepthBiasFactor = float(1 << 23);
|
constexpr float DepthBiasFactor = float(1 << 23);
|
||||||
|
|
||||||
@ -5071,24 +5104,14 @@ namespace dxvk {
|
|||||||
float depthBias = bit::cast<float>(rs[D3DRS_DEPTHBIAS]) * DepthBiasFactor;
|
float depthBias = bit::cast<float>(rs[D3DRS_DEPTHBIAS]) * DepthBiasFactor;
|
||||||
float slopeScaledDepthBias = bit::cast<float>(rs[D3DRS_SLOPESCALEDEPTHBIAS]);
|
float slopeScaledDepthBias = bit::cast<float>(rs[D3DRS_SLOPESCALEDEPTHBIAS]);
|
||||||
|
|
||||||
DxvkRasterizerState state;
|
|
||||||
state.cullMode = DecodeCullMode(D3DCULL(rs[D3DRS_CULLMODE]));
|
|
||||||
state.depthBiasEnable = depthBias != 0.0f || slopeScaledDepthBias != 0.0f;
|
|
||||||
state.depthClipEnable = true;
|
|
||||||
state.frontFace = VK_FRONT_FACE_CLOCKWISE;
|
|
||||||
state.polygonMode = DecodeFillMode(D3DFILLMODE(rs[D3DRS_FILLMODE]));
|
|
||||||
state.sampleCount = 0;
|
|
||||||
|
|
||||||
DxvkDepthBias biases;
|
DxvkDepthBias biases;
|
||||||
biases.depthBiasConstant = depthBias;
|
biases.depthBiasConstant = depthBias;
|
||||||
biases.depthBiasSlope = slopeScaledDepthBias;
|
biases.depthBiasSlope = slopeScaledDepthBias;
|
||||||
biases.depthBiasClamp = 0.0f;
|
biases.depthBiasClamp = 0.0f;
|
||||||
|
|
||||||
EmitCs([
|
EmitCs([
|
||||||
cState = state,
|
|
||||||
cBiases = biases
|
cBiases = biases
|
||||||
](DxvkContext* ctx) {
|
](DxvkContext* ctx) {
|
||||||
ctx->setRasterizerState(cState);
|
|
||||||
ctx->setDepthBias(cBiases);
|
ctx->setDepthBias(cBiases);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -5347,6 +5370,9 @@ namespace dxvk {
|
|||||||
if (m_flags.test(D3D9DeviceFlag::DirtyRasterizerState))
|
if (m_flags.test(D3D9DeviceFlag::DirtyRasterizerState))
|
||||||
BindRasterizerState();
|
BindRasterizerState();
|
||||||
|
|
||||||
|
if (m_flags.test(D3D9DeviceFlag::DirtyDepthBias))
|
||||||
|
BindDepthBias();
|
||||||
|
|
||||||
if (m_flags.test(D3D9DeviceFlag::DirtyMultiSampleState))
|
if (m_flags.test(D3D9DeviceFlag::DirtyMultiSampleState))
|
||||||
BindMultiSampleState();
|
BindMultiSampleState();
|
||||||
|
|
||||||
@ -6265,6 +6291,7 @@ namespace dxvk {
|
|||||||
rs[D3DRS_DEPTHBIAS] = bit::cast<DWORD>(0.0f);
|
rs[D3DRS_DEPTHBIAS] = bit::cast<DWORD>(0.0f);
|
||||||
rs[D3DRS_SLOPESCALEDEPTHBIAS] = bit::cast<DWORD>(0.0f);
|
rs[D3DRS_SLOPESCALEDEPTHBIAS] = bit::cast<DWORD>(0.0f);
|
||||||
BindRasterizerState();
|
BindRasterizerState();
|
||||||
|
BindDepthBias();
|
||||||
|
|
||||||
rs[D3DRS_SCISSORTESTENABLE] = FALSE;
|
rs[D3DRS_SCISSORTESTENABLE] = FALSE;
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ namespace dxvk {
|
|||||||
DirtyDepthStencilState,
|
DirtyDepthStencilState,
|
||||||
DirtyBlendState,
|
DirtyBlendState,
|
||||||
DirtyRasterizerState,
|
DirtyRasterizerState,
|
||||||
|
DirtyDepthBias,
|
||||||
DirtyAlphaTestState,
|
DirtyAlphaTestState,
|
||||||
DirtyInputLayout,
|
DirtyInputLayout,
|
||||||
DirtyViewportScissor,
|
DirtyViewportScissor,
|
||||||
@ -753,6 +754,15 @@ namespace dxvk {
|
|||||||
return m_amdATOC || (m_nvATOC && alphaTest);
|
return m_amdATOC || (m_nvATOC && alphaTest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool IsDepthBiasEnabled() {
|
||||||
|
const auto& rs = m_state.renderStates;
|
||||||
|
|
||||||
|
float depthBias = bit::cast<float>(rs[D3DRS_DEPTHBIAS]);
|
||||||
|
float slopeScaledDepthBias = bit::cast<float>(rs[D3DRS_SLOPESCALEDEPTHBIAS]);
|
||||||
|
|
||||||
|
return depthBias != 0.0f || slopeScaledDepthBias != 0.0f;
|
||||||
|
}
|
||||||
|
|
||||||
inline bool IsAlphaTestEnabled() {
|
inline bool IsAlphaTestEnabled() {
|
||||||
return m_state.renderStates[D3DRS_ALPHATESTENABLE] && !IsAlphaToCoverageEnabled();
|
return m_state.renderStates[D3DRS_ALPHATESTENABLE] && !IsAlphaToCoverageEnabled();
|
||||||
}
|
}
|
||||||
@ -773,6 +783,8 @@ namespace dxvk {
|
|||||||
|
|
||||||
void BindRasterizerState();
|
void BindRasterizerState();
|
||||||
|
|
||||||
|
void BindDepthBias();
|
||||||
|
|
||||||
void BindAlphaTestState();
|
void BindAlphaTestState();
|
||||||
|
|
||||||
template <DxsoProgramType ShaderStage, typename HardwareLayoutType, typename SoftwareLayoutType, typename ShaderType>
|
template <DxsoProgramType ShaderStage, typename HardwareLayoutType, typename SoftwareLayoutType, typename ShaderType>
|
||||||
|
Loading…
Reference in New Issue
Block a user