Commit 1efcbeac authored by Alexandre Julliard's avatar Alexandre Julliard

d3d9/tests: Mark some of the depth bias tests as todo.

They fail on the Gitlab CI.
parent ab8d0daf
......@@ -22485,23 +22485,29 @@ static void test_depthbias(void)
/* The broken results are for the WARP driver on the testbot. It seems to initialize
* a scaling factor based on the first depth format that is used. Other formats with
* a different depth size then render incorrectly. */
todo_wine_if(!color_match(color, 0x000000ff, 1))
ok(color_match(color, 0x000000ff, 1) || broken(color_match(color, 0x00ffffff, 1)),
"Got unexpected color %08x at x=64, format %u.\n", color, formats[i]);
color = getPixelColor(device, 190, 240);
todo_wine_if(!color_match(color, 0x000000ff, 1))
ok(color_match(color, 0x000000ff, 1) || broken(color_match(color, 0x00ffffff, 1)),
"Got unexpected color %08x at x=190, format %u.\n", color, formats[i]);
color = getPixelColor(device, 194, 240);
todo_wine_if(!color_match(color, 0x0000ff00, 1))
ok(color_match(color, 0x0000ff00, 1) || broken(color_match(color, 0x00ffffff, 1)),
"Got unexpected color %08x at x=194, format %u.\n", color, formats[i]);
color = getPixelColor(device, 318, 240);
todo_wine_if(!color_match(color, 0x0000ff00, 1))
ok(color_match(color, 0x0000ff00, 1) || broken(color_match(color, 0x00ffffff, 1)),
"Got unexpected color %08x at x=318, format %u.\n", color, formats[i]);
color = getPixelColor(device, 322, 240);
todo_wine_if(!color_match(color, 0x00ff0000, 1))
ok(color_match(color, 0x00ff0000, 1) || broken(color_match(color, 0x00000000, 1)),
"Got unexpected color %08x at x=322, format %u.\n", color, formats[i]);
color = getPixelColor(device, 446, 240);
todo_wine_if(!color_match(color, 0x00ff0000, 1))
ok(color_match(color, 0x00ff0000, 1) || broken(color_match(color, 0x00000000, 1)),
"Got unexpected color %08x at x=446, format %u.\n", color, formats[i]);
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