Commit 382c8fde authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

ddraw: D3DRENDERSTATE_NORMALIZENORMALS doesn't exist before d3d7.

parent e8aba715
......@@ -2525,6 +2525,7 @@ static HRESULT WINAPI d3d_device3_GetRenderState(IDirect3DDevice3 *iface,
}
case D3DRENDERSTATE_LIGHTING:
case D3DRENDERSTATE_NORMALIZENORMALS:
*value = 0xffffffff;
return D3D_OK;
......@@ -2884,6 +2885,7 @@ static HRESULT WINAPI d3d_device3_SetRenderState(IDirect3DDevice3 *iface,
}
case D3DRENDERSTATE_LIGHTING:
case D3DRENDERSTATE_NORMALIZENORMALS:
hr = D3D_OK;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment