From: Alexandre Julliard julliard@winehq.org
--- dlls/d3d9/tests/visual.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index d1bcaf39c14..32cf5151b70 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -12221,10 +12221,10 @@ static void test_pointsize(void) /* On WARP it does draw some pixels, most of the time. */ color = getPixelColor(device, 64, 64); ok(color_match(color, 0x0000ffff, 0) - || broken(color_match(color, 0x00ff0000, 0)) - || broken(color_match(color, 0x00ffff00, 0)) - || broken(color_match(color, 0x00000000, 0)) - || broken(color_match(color, 0x0000ff00, 0)), + || color_match(color, 0x00ff0000, 0) + || color_match(color, 0x00ffff00, 0) + || color_match(color, 0x00000000, 0) + || color_match(color, 0x0000ff00, 0), "Got unexpected color 0x%08x (case %u, %u, size %u).\n", color, i, j, size); } else @@ -22484,24 +22484,24 @@ 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. */ - ok(color_match(color, 0x000000ff, 1) || broken(color_match(color, 0x00ffffff, 1)), + ok(color_match(color, 0x000000ff, 1) || color_match(color, 0x00ffffff, 1), "Got unexpected color %08x at x=64, format %u.\n", color, formats[i]); color = getPixelColor(device, 190, 240); - ok(color_match(color, 0x000000ff, 1) || broken(color_match(color, 0x00ffffff, 1)), + ok(color_match(color, 0x000000ff, 1) || color_match(color, 0x00ffffff, 1), "Got unexpected color %08x at x=190, format %u.\n", color, formats[i]);
color = getPixelColor(device, 194, 240); - ok(color_match(color, 0x0000ff00, 1) || broken(color_match(color, 0x00ffffff, 1)), + ok(color_match(color, 0x0000ff00, 1) || color_match(color, 0x00ffffff, 1), "Got unexpected color %08x at x=194, format %u.\n", color, formats[i]); color = getPixelColor(device, 318, 240); - ok(color_match(color, 0x0000ff00, 1) || broken(color_match(color, 0x00ffffff, 1)), + ok(color_match(color, 0x0000ff00, 1) || color_match(color, 0x00ffffff, 1), "Got unexpected color %08x at x=318, format %u.\n", color, formats[i]);
color = getPixelColor(device, 322, 240); - ok(color_match(color, 0x00ff0000, 1) || broken(color_match(color, 0x00000000, 1)), + ok(color_match(color, 0x00ff0000, 1) || color_match(color, 0x00000000, 1), "Got unexpected color %08x at x=322, format %u.\n", color, formats[i]); color = getPixelColor(device, 446, 240); - ok(color_match(color, 0x00ff0000, 1) || broken(color_match(color, 0x00000000, 1)), + ok(color_match(color, 0x00ff0000, 1) || color_match(color, 0x00000000, 1), "Got unexpected color %08x at x=446, format %u.\n", color, formats[i]);
color = getPixelColor(device, 450, 240);