1
0
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:
Joshua Ashton 2020-09-26 06:03:22 +01:00
parent dc392f7cfa
commit e4bca7a42f
3 changed files with 85 additions and 59 deletions

View File

@ -91,7 +91,12 @@ namespace dxvk {
? fogCtx.vFog
: 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();
std::array<SpirvPhiLabel, 4> fogVariables;
@ -103,7 +108,6 @@ namespace dxvk {
{ uint32_t(D3DFOG_LINEAR), spvModule.allocateId() },
} };
spvModule.opSelectionMerge(applyFogFactor, spv::SelectionControlMaskNone);
spvModule.opSwitch(fogMode,
fogCaseLabels[D3DFOG_NONE].labelId,
@ -120,9 +124,13 @@ namespace dxvk {
default:
// vFog
case D3DFOG_NONE: {
return fogCtx.IsPixel
? fogCtx.vFog
: spvModule.constf32(1.0f);
if (fogCtx.IsPixel)
return fogCtx.vFog;
if (fogCtx.IsFixedFunction && fogCtx.HasSpecular)
return spvModule.opCompositeExtract(floatType, fogCtx.Specular, 1, &wIndex);
return spvModule.constf32(1.0f);
}
// (end - d) / (end - start)
@ -155,9 +163,10 @@ namespace dxvk {
spvModule.opLabel(applyFogFactor);
uint32_t fogFactor = spvModule.opPhi(floatType,
fogFactor = spvModule.opPhi(floatType,
fogVariables.size(),
fogVariables.data());
}
uint32_t fogRetValue = 0;
@ -1156,6 +1165,10 @@ namespace dxvk {
fogCtx.HasFogInput = m_vsKey.Data.Contents.HasFog;
fogCtx.vFog = m_vs.in.FOG;
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));
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.vFog = m_ps.in.FOG;
fogCtx.oColor = current;
fogCtx.IsFixedFunction = true;
fogCtx.IsPositionT = false;
fogCtx.HasSpecular = false;
fogCtx.Specular = 0;
current = DoFixedFunctionFog(m_module, fogCtx);
m_module.opStore(m_ps.out.COLOR, current);

View File

@ -29,6 +29,11 @@ namespace dxvk {
uint32_t oColor;
bool HasFogInput;
bool IsFixedFunction;
bool IsPositionT;
bool HasSpecular;
uint32_t Specular;
};
struct D3D9FixedFunctionOptions {

View File

@ -3521,6 +3521,10 @@ void DxsoCompiler::emitControlFlowGenericLoop(
fogCtx.vPos = m_module.opLoad(getVectorTypeId(vPosPtr.type), vPosPtr.id);
fogCtx.vFog = m_module.opLoad(getVectorTypeId(vFogPtr.type), vFogPtr.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));
}