mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d8] Properly return the value of D3DRS_SOFTWAREVERTEXPROCESSING
This commit is contained in:
parent
d846e89a4b
commit
e2a078d534
1 changed files with 2 additions and 1 deletions
|
@ -1678,7 +1678,8 @@ namespace dxvk {
|
|||
} break;
|
||||
|
||||
case D3DRS_SOFTWAREVERTEXPROCESSING:
|
||||
return GetD3D9()->GetSoftwareVertexProcessing();
|
||||
*pValue = GetD3D9()->GetSoftwareVertexProcessing();
|
||||
return D3D_OK;
|
||||
|
||||
case D3DRS_PATCHSEGMENTS:
|
||||
*pValue = bit::cast<DWORD>(m_patchSegments);
|
||||
|
|
Loading…
Add table
Reference in a new issue