d3d8/tests: Trace the current test in test_signed_formats().

Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Matteo Bruni 2017-09-08 18:44:10 +02:00 committed by Alexandre Julliard
parent 22b9403d00
commit 210ce803a0
1 changed files with 4 additions and 4 deletions

View File

@ -6442,8 +6442,8 @@ static void test_signed_formats(void)
color = getPixelColor(device, 80 + 160 * x, 60 + 120 * y);
ok(color_match(color, expected_color, 1) || broken(r200_broken),
"Expected color 0x%08x, got 0x%08x, format %s, location %ux%u.\n",
expected_color, color, formats[i].name, x, y);
"Expected color 0x%08x, got 0x%08x, format %s, test %u, location %ux%u.\n",
expected_color, color, formats[i].name, j, x, y);
}
}
hr = IDirect3DDevice8_Present(device, NULL, NULL, NULL, NULL);
@ -6472,8 +6472,8 @@ static void test_signed_formats(void)
color = getPixelColor(device, 80 + 160 * x, 60 + 120 * y);
ok(color_match(color, expected_color, formats[i].slop)
|| broken(color_match(color, expected_color, formats[i].slop_broken)),
"Expected color 0x%08x, got 0x%08x, format %s, location %ux%u.\n",
expected_color, color, formats[i].name, x, y);
"Expected color 0x%08x, got 0x%08x, format %s, test %u, location %ux%u.\n",
expected_color, color, formats[i].name, j, x, y);
}
}
hr = IDirect3DDevice8_Present(device, NULL, NULL, NULL, NULL);