d3dx9_36/tests: Fix some constant conversion warnings.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alexandre Julliard 2019-12-17 16:29:18 +01:00
parent 4429b9f803
commit 863da013a2
1 changed files with 3 additions and 3 deletions

View File

@ -7484,9 +7484,9 @@ static void test_weld_vertices(void)
{{ 2.0f, 3.0f, 0.f}, {0, 0, 0, 0}},
{{ 0.0f, 0.0f, 0.f}, {0, 0, 0, 0}},
{{ 3.0f, 3.0f, 0.f}, {65535, 65535, 65535, 65535}},
{{ 3.0f, 3.0f, 0.f}, {-1, -1, -1, -1}},
{{ 3.0f, 0.0f, 0.f}, {0, 0, 0, 0}},
{{ 1.0f, 0.0f, 0.f}, {65534, 65534, 65534, 65534}},
{{ 1.0f, 0.0f, 0.f}, {-2, -2, -2, -2}},
};
const DWORD indices22[] = {0, 1, 2, 3, 4, 5};
const DWORD attributes22[] = {0, 0};
@ -7501,7 +7501,7 @@ static void test_weld_vertices(void)
{{ 2.0f, 3.0f, 0.f}, {0, 0, 0, 0}},
{{ 0.0f, 0.0f, 0.f}, {0, 0, 0, 0}},
{{ 2.0f, 3.0f, 0.f}, {65535, 65535, 65535, 65535}},
{{ 2.0f, 3.0f, 0.f}, {-1, -1, -1, -1}},
{{ 3.0f, 0.0f, 0.f}, {0, 0, 0, 0}},
};
const DWORD exp_indices22[] = {0, 1, 2, 3, 4, 2};