mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-19 05:52:11 +01:00
[d3d9] Handle specular fog factor for fixed function
Also handle POSITION_T shenanigans Closes #1771
This commit is contained in:
parent
dc392f7cfa
commit
e4bca7a42f
@ -91,7 +91,12 @@ namespace dxvk {
|
|||||||
? fogCtx.vFog
|
? fogCtx.vFog
|
||||||
: spvModule.opFAbs(floatType, z);
|
: spvModule.opFAbs(floatType, z);
|
||||||
}
|
}
|
||||||
|
uint32_t fogFactor;
|
||||||
|
if (!fogCtx.IsPixel && fogCtx.IsFixedFunction && fogCtx.IsPositionT) {
|
||||||
|
fogFactor = fogCtx.HasSpecular
|
||||||
|
? spvModule.opCompositeExtract(floatType, fogCtx.Specular, 1, &wIndex)
|
||||||
|
: spvModule.constf32(1.0f);
|
||||||
|
} else {
|
||||||
uint32_t applyFogFactor = spvModule.allocateId();
|
uint32_t applyFogFactor = spvModule.allocateId();
|
||||||
|
|
||||||
std::array<SpirvPhiLabel, 4> fogVariables;
|
std::array<SpirvPhiLabel, 4> fogVariables;
|
||||||
@ -103,7 +108,6 @@ namespace dxvk {
|
|||||||
{ uint32_t(D3DFOG_LINEAR), spvModule.allocateId() },
|
{ uint32_t(D3DFOG_LINEAR), spvModule.allocateId() },
|
||||||
} };
|
} };
|
||||||
|
|
||||||
|
|
||||||
spvModule.opSelectionMerge(applyFogFactor, spv::SelectionControlMaskNone);
|
spvModule.opSelectionMerge(applyFogFactor, spv::SelectionControlMaskNone);
|
||||||
spvModule.opSwitch(fogMode,
|
spvModule.opSwitch(fogMode,
|
||||||
fogCaseLabels[D3DFOG_NONE].labelId,
|
fogCaseLabels[D3DFOG_NONE].labelId,
|
||||||
@ -120,9 +124,13 @@ namespace dxvk {
|
|||||||
default:
|
default:
|
||||||
// vFog
|
// vFog
|
||||||
case D3DFOG_NONE: {
|
case D3DFOG_NONE: {
|
||||||
return fogCtx.IsPixel
|
if (fogCtx.IsPixel)
|
||||||
? fogCtx.vFog
|
return fogCtx.vFog;
|
||||||
: spvModule.constf32(1.0f);
|
|
||||||
|
if (fogCtx.IsFixedFunction && fogCtx.HasSpecular)
|
||||||
|
return spvModule.opCompositeExtract(floatType, fogCtx.Specular, 1, &wIndex);
|
||||||
|
|
||||||
|
return spvModule.constf32(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
// (end - d) / (end - start)
|
// (end - d) / (end - start)
|
||||||
@ -155,9 +163,10 @@ namespace dxvk {
|
|||||||
|
|
||||||
spvModule.opLabel(applyFogFactor);
|
spvModule.opLabel(applyFogFactor);
|
||||||
|
|
||||||
uint32_t fogFactor = spvModule.opPhi(floatType,
|
fogFactor = spvModule.opPhi(floatType,
|
||||||
fogVariables.size(),
|
fogVariables.size(),
|
||||||
fogVariables.data());
|
fogVariables.data());
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t fogRetValue = 0;
|
uint32_t fogRetValue = 0;
|
||||||
|
|
||||||
@ -1156,6 +1165,10 @@ namespace dxvk {
|
|||||||
fogCtx.HasFogInput = m_vsKey.Data.Contents.HasFog;
|
fogCtx.HasFogInput = m_vsKey.Data.Contents.HasFog;
|
||||||
fogCtx.vFog = m_vs.in.FOG;
|
fogCtx.vFog = m_vs.in.FOG;
|
||||||
fogCtx.oColor = 0;
|
fogCtx.oColor = 0;
|
||||||
|
fogCtx.IsFixedFunction = true;
|
||||||
|
fogCtx.IsPositionT = m_vsKey.Data.Contents.HasPositionT;
|
||||||
|
fogCtx.HasSpecular = m_vsKey.Data.Contents.HasColor1;
|
||||||
|
fogCtx.Specular = m_vs.in.COLOR[1];
|
||||||
m_module.opStore(m_vs.out.FOG, DoFixedFunctionFog(m_module, fogCtx));
|
m_module.opStore(m_vs.out.FOG, DoFixedFunctionFog(m_module, fogCtx));
|
||||||
|
|
||||||
auto pointInfo = GetPointSizeInfoVS(m_module, 0, vtx, m_vs.in.POINTSIZE, m_rsBlock);
|
auto pointInfo = GetPointSizeInfoVS(m_module, 0, vtx, m_vs.in.POINTSIZE, m_rsBlock);
|
||||||
@ -1942,6 +1955,10 @@ namespace dxvk {
|
|||||||
fogCtx.vPos = m_ps.in.POS;
|
fogCtx.vPos = m_ps.in.POS;
|
||||||
fogCtx.vFog = m_ps.in.FOG;
|
fogCtx.vFog = m_ps.in.FOG;
|
||||||
fogCtx.oColor = current;
|
fogCtx.oColor = current;
|
||||||
|
fogCtx.IsFixedFunction = true;
|
||||||
|
fogCtx.IsPositionT = false;
|
||||||
|
fogCtx.HasSpecular = false;
|
||||||
|
fogCtx.Specular = 0;
|
||||||
current = DoFixedFunctionFog(m_module, fogCtx);
|
current = DoFixedFunctionFog(m_module, fogCtx);
|
||||||
|
|
||||||
m_module.opStore(m_ps.out.COLOR, current);
|
m_module.opStore(m_ps.out.COLOR, current);
|
||||||
|
@ -29,6 +29,11 @@ namespace dxvk {
|
|||||||
uint32_t oColor;
|
uint32_t oColor;
|
||||||
|
|
||||||
bool HasFogInput;
|
bool HasFogInput;
|
||||||
|
|
||||||
|
bool IsFixedFunction;
|
||||||
|
bool IsPositionT;
|
||||||
|
bool HasSpecular;
|
||||||
|
uint32_t Specular;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct D3D9FixedFunctionOptions {
|
struct D3D9FixedFunctionOptions {
|
||||||
|
@ -3521,6 +3521,10 @@ void DxsoCompiler::emitControlFlowGenericLoop(
|
|||||||
fogCtx.vPos = m_module.opLoad(getVectorTypeId(vPosPtr.type), vPosPtr.id);
|
fogCtx.vPos = m_module.opLoad(getVectorTypeId(vPosPtr.type), vPosPtr.id);
|
||||||
fogCtx.vFog = m_module.opLoad(getVectorTypeId(vFogPtr.type), vFogPtr.id);
|
fogCtx.vFog = m_module.opLoad(getVectorTypeId(vFogPtr.type), vFogPtr.id);
|
||||||
fogCtx.oColor = m_module.opLoad(getVectorTypeId(oColor0Ptr.type), oColor0Ptr.id);
|
fogCtx.oColor = m_module.opLoad(getVectorTypeId(oColor0Ptr.type), oColor0Ptr.id);
|
||||||
|
fogCtx.IsFixedFunction = false;
|
||||||
|
fogCtx.IsPositionT = false;
|
||||||
|
fogCtx.HasSpecular = false;
|
||||||
|
fogCtx.Specular = 0;
|
||||||
|
|
||||||
m_module.opStore(oColor0Ptr.id, DoFixedFunctionFog(m_module, fogCtx));
|
m_module.opStore(oColor0Ptr.id, DoFixedFunctionFog(m_module, fogCtx));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user