Commit 210ce803 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

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

parent 22b9403d
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment