Hi community,
I'm simply trying to port my app from DX8 to DX9, I read on Microsoft documentation that
D3DRS_SOFTWAREVERTEXPROCESSING
moved to
SetSoftwareVertexProcessing()
I have this in my code
BOOL isSoftwareVertexClipping=FALSE;
if (!IsTLVertexClipping())
isSoftwareVertexClipping=TRUE;
STATEMANAGER.SaveRenderState(D3DRS_SOFTWAREVERTEXPROCESSING, isSoftwareVertexClipping);
I'm struggling to convert to SetSoftwareVertexProcessing as it gives me this error:
Error (active) E0020 identifier "SetSoftwareVertexProcessing" is undefined
can someone please help?
thanks in advance