This is per our discussion - since we're only dealing with unsigned integers here (and no casts to signed), abs() is a noop.
Gerald --- dlls/d3d8/tests/visual.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/d3d8/tests/visual.c b/dlls/d3d8/tests/visual.c index e8e6bf870e..0b2ce20787 100644 --- a/dlls/d3d8/tests/visual.c +++ b/dlls/d3d8/tests/visual.c @@ -52,13 +52,13 @@ static HWND create_window(void)
static BOOL color_match(D3DCOLOR c1, D3DCOLOR c2, BYTE max_diff) { - if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; + if ((c1 & 0xff) - (c2 & 0xff) > max_diff) return FALSE; c1 >>= 8; c2 >>= 8; - if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; + if ((c1 & 0xff) - (c2 & 0xff) > max_diff) return FALSE; c1 >>= 8; c2 >>= 8; - if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; + if ((c1 & 0xff) - (c2 & 0xff) > max_diff) return FALSE; c1 >>= 8; c2 >>= 8; - if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; + if ((c1 & 0xff) - (c2 & 0xff) > max_diff) return FALSE; return TRUE; }
Hi,
While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=44028
Your paranoid android.
=== w8 (32 bit Windows report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== w8adm (32 bit Windows report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== w864 (32 bit Windows report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== w1064 (32 bit Windows report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== debian9 (32 bit Wine report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 1. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== debian9 (build log) ===
=== debian9 (32 bit WoW Wine report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 1. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== debian9 (64 bit Wow Wine report) ===
d3d8: visual.c:1508: Test failed: fog vs0 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs0 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps0 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm1 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm2 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm3 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs1 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps0 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm1 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm2 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 1: got color 00ff0000, expected 00fe0100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 2: got color 00df2000, expected 00de2100 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 6: got color 00609f00, expected 005fa000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 7: got color 0040bf00, expected 003fc000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm3 ftm0 8: got color 0020df00, expected 001fe000 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm1 6: got color 008c7300, expected 008d7200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 0: got color 00ff0000, expected 00fd0200 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm2 8: got color 00877800, expected 00867900 +-5% visual.c:1508: Test failed: fog vs2 ps1 fvm0 ftm3 6: got color 00609f00, expected 005fa000 +-5% visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:5266: Test failed: Expected color 0x0040c0ff, got 0x0040bfff, V16U16 input -16384, 16384. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 0. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 0. visual.c:6002: Test failed: Got unexpected color 0x0000807f, case 1. visual.c:6005: Test failed: Got unexpected color 0x0000ff00, case 1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000007ff, format D3DFMT_V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_V8U8, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x000107ff, got 0x000008ff, format D3DFMT_V16U16, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x008001ff, got 0x008000ff, format D3DFMT_V16U16, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x000180ff, got 0x000080ff, format D3DFMT_V16U16, test 3, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 0, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 0, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 0, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 0, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 1, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 1, location 0x1. visual.c:6531: Test failed: Expected color 0x007f7f00, got 0x007e7e00, format D3DFMT_Q8W8V8U8, test 2, location 1x0. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 2, location 0x3. visual.c:6531: Test failed: Expected color 0x00202000, got 0x001f1f00, format D3DFMT_Q8W8V8U8, test 2, location 1x3. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_Q8W8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_Q8W8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_Q8W8V8U8, test 2, location 3x2. visual.c:6531: Test failed: Expected color 0x00101000, got 0x000f0f00, format D3DFMT_Q8W8V8U8, test 3, location 0x3. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_Q8W8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000880, format D3DFMT_X8L8V8U8, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_X8L8V8U8, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_X8L8V8U8, test 3, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 0, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 0, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 0, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 0, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 1, location 0x1. visual.c:6560: Test failed: Expected color 0x00010780, got 0x00000780, format D3DFMT_L6V5U5, test 2, location 2x0. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 2, location 0x1. visual.c:6560: Test failed: Expected color 0x00800180, got 0x00800080, format D3DFMT_L6V5U5, test 2, location 1x1. visual.c:6560: Test failed: Expected color 0x007878ff, got 0x007777ff, format D3DFMT_L6V5U5, test 2, location 3x2. visual.c:6560: Test failed: Expected color 0x00018080, got 0x00008080, format D3DFMT_L6V5U5, test 3, location 0x1. visual.c:7913: Test failed: Input test: Quad 2(color-ubyte) returned color 0x004080fe, expected 0x004080ff visual.c:10438: Test failed: Expected colour 0x000000c0 for test 0, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 7, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 11, got 0x000000bf. visual.c:10438: Test failed: Expected colour 0x000000c0 for test 12, got 0x000000bf.
=== debian9 (build log) ===