1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-04-05 16:40:17 +02:00

[d3d8] Store the value of D3DRS_ZVISIBLE

This commit is contained in:
WinterSnowfall 2025-02-10 11:12:54 +02:00 committed by Philip Rebohle
parent 946419cda2
commit 0a19e5b6db
2 changed files with 6 additions and 3 deletions

View File

@ -1683,8 +1683,9 @@ namespace dxvk {
m_linePattern = bit::cast<D3DLINEPATTERN>(Value); m_linePattern = bit::cast<D3DLINEPATTERN>(Value);
return D3D_OK; return D3D_OK;
// Not supported by D3D8. // Not supported by D3D8, but its value is stored.
case D3DRS_ZVISIBLE: case D3DRS_ZVISIBLE:
m_zVisible = Value;
return D3D_OK; return D3D_OK;
// TODO: Implement D3DRS_ANTIALIASEDLINEENABLE in D9VK. // TODO: Implement D3DRS_ANTIALIASEDLINEENABLE in D9VK.
@ -1745,9 +1746,9 @@ namespace dxvk {
*pValue = bit::cast<DWORD>(m_linePattern); *pValue = bit::cast<DWORD>(m_linePattern);
return D3D_OK; return D3D_OK;
// Not supported by D3D8. // Not supported by D3D8, but its value is stored.
case D3DRS_ZVISIBLE: case D3DRS_ZVISIBLE:
*pValue = 0; *pValue = m_zVisible;
return D3D_OK; return D3D_OK;
case D3DRS_EDGEANTIALIAS: case D3DRS_EDGEANTIALIAS:

View File

@ -426,6 +426,8 @@ namespace dxvk {
// Value of D3DRS_LINEPATTERN // Value of D3DRS_LINEPATTERN
D3DLINEPATTERN m_linePattern = {}; D3DLINEPATTERN m_linePattern = {};
// Value of D3DRS_ZVISIBLE (although the RS is not supported, its value is stored)
DWORD m_zVisible = 0;
// Value of D3DRS_PATCHSEGMENTS // Value of D3DRS_PATCHSEGMENTS
float m_patchSegments = 1.0f; float m_patchSegments = 1.0f;