Commit ffc3c099 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

wined3d: Set proper values for the guard band caps.

parent adf73f73
......@@ -2088,10 +2088,10 @@ HRESULT CDECL wined3d_get_device_caps(const struct wined3d_adapter *adapter,
caps->MaxTextureAspectRatio = d3d_info->limits.texture_size;
caps->MaxVertexW = 1e10f;
caps->GuardBandLeft = 0.0f;
caps->GuardBandTop = 0.0f;
caps->GuardBandRight = 0.0f;
caps->GuardBandBottom = 0.0f;
caps->GuardBandLeft = -32768.0f;
caps->GuardBandTop = -32768.0f;
caps->GuardBandRight = 32768.0f;
caps->GuardBandBottom = 32768.0f;
caps->ExtentsAdjust = 0.0f;
......
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