[WINESYNC] d3dx9_36/tests: Fix some constant conversion warnings.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 863da013a216bb50b925bbb9e3987b21206fb782 by Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
winesync 2020-09-21 23:03:24 +02:00 committed by Jérôme Gardou
parent bf2e192898
commit 02ca94672b
2 changed files with 4 additions and 4 deletions

View file

@ -7503,9 +7503,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};
@ -7520,7 +7520,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};