wined3d: Return 1e10f for MaxVertexW from wined3d_get_device_caps().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=23863 Signed-off-by: Paul Gofman <gofmanp@gmail.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9839bb7691
commit
91b43bca94
|
@ -2179,7 +2179,7 @@ HRESULT CDECL wined3d_get_device_caps(const struct wined3d *wined3d, UINT adapte
|
||||||
|
|
||||||
caps->MaxTextureRepeat = 32768;
|
caps->MaxTextureRepeat = 32768;
|
||||||
caps->MaxTextureAspectRatio = d3d_info->limits.texture_size;
|
caps->MaxTextureAspectRatio = d3d_info->limits.texture_size;
|
||||||
caps->MaxVertexW = 1.0f;
|
caps->MaxVertexW = 1e10f;
|
||||||
|
|
||||||
caps->GuardBandLeft = 0.0f;
|
caps->GuardBandLeft = 0.0f;
|
||||||
caps->GuardBandTop = 0.0f;
|
caps->GuardBandTop = 0.0f;
|
||||||
|
|
Loading…
Reference in New Issue