wined3d: Fix an msvc warning.

This commit is contained in:
Stefan Dösinger 2014-01-01 19:01:41 +01:00 committed by Alexandre Julliard
parent 88923cd6f3
commit 1e9fe22f4c
1 changed files with 1 additions and 1 deletions

View File

@ -938,7 +938,7 @@ void draw_primitive(struct wined3d_device *device, UINT start_idx, UINT index_co
UINT start_instance, UINT instance_count, BOOL indexed) DECLSPEC_HIDDEN;
DWORD get_flexible_vertex_size(DWORD d3dvtVertexType) DECLSPEC_HIDDEN;
#define eps 1e-8
#define eps 1e-8f
#define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
(((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)