mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-04-04 19:25:19 +02:00
[d3d8] Store the value of D3DRS_ZVISIBLE
This commit is contained in:
parent
946419cda2
commit
0a19e5b6db
@ -1683,8 +1683,9 @@ namespace dxvk {
|
||||
m_linePattern = bit::cast<D3DLINEPATTERN>(Value);
|
||||
return D3D_OK;
|
||||
|
||||
// Not supported by D3D8.
|
||||
// Not supported by D3D8, but its value is stored.
|
||||
case D3DRS_ZVISIBLE:
|
||||
m_zVisible = Value;
|
||||
return D3D_OK;
|
||||
|
||||
// TODO: Implement D3DRS_ANTIALIASEDLINEENABLE in D9VK.
|
||||
@ -1745,9 +1746,9 @@ namespace dxvk {
|
||||
*pValue = bit::cast<DWORD>(m_linePattern);
|
||||
return D3D_OK;
|
||||
|
||||
// Not supported by D3D8.
|
||||
// Not supported by D3D8, but its value is stored.
|
||||
case D3DRS_ZVISIBLE:
|
||||
*pValue = 0;
|
||||
*pValue = m_zVisible;
|
||||
return D3D_OK;
|
||||
|
||||
case D3DRS_EDGEANTIALIAS:
|
||||
|
@ -426,6 +426,8 @@ namespace dxvk {
|
||||
|
||||
// Value of D3DRS_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
|
||||
float m_patchSegments = 1.0f;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user