I don't expect d3d7 to work. But I don't have real hardware that exposes D3DPRASTERCAPS_ROP2 to verify that.
Signed-off-by: Chip Davis cdavis5x@gmail.com --- dlls/ddraw/tests/ddraw1.c | 139 ++++++++++++++++++++++++++++++++++++++ dlls/ddraw/tests/ddraw2.c | 117 ++++++++++++++++++++++++++++++++ dlls/ddraw/tests/ddraw4.c | 112 ++++++++++++++++++++++++++++++ dlls/ddraw/tests/ddraw7.c | 102 ++++++++++++++++++++++++++++ 4 files changed, 470 insertions(+)
diff --git a/dlls/ddraw/tests/ddraw1.c b/dlls/ddraw/tests/ddraw1.c index b87b7903289..1e528b79380 100644 --- a/dlls/ddraw/tests/ddraw1.c +++ b/dlls/ddraw/tests/ddraw1.c @@ -15091,6 +15091,144 @@ static void test_filling_convention(void) DestroyWindow(window); }
+static void test_rop2(const GUID *device_guid) +{ + static D3DRECT clear_rect = {{0}, {0}, {640}, {480}}; + static D3DTLVERTEX tquad[] = + { + {{ 0.0f}, {480.0f}, {-0.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{ 0.0f}, { 0.0f}, {-0.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{640.0f}, {480.0f}, { 1.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{640.0f}, { 0.0f}, { 1.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + }; + static struct + { + unsigned int rop2; + D3DCOLOR expected; + } + tests[] = + { + {R2_BLACK, 0x00000000}, + {R2_NOTMERGEPEN, 0x001100ff}, + {R2_MASKNOTPEN, 0x00220000}, + {R2_NOTCOPYPEN, 0x003300ff}, + {R2_MASKPENNOT, 0x0044ff00}, + {R2_NOT, 0x0055ffff}, + {R2_XORPEN, 0x0066ff00}, + {R2_NOTMASKPEN, 0x0077ffff}, + {R2_MASKPEN, 0x00880000}, + {R2_NOTXORPEN, 0x009900ff}, + {R2_NOP, 0x00aa0000}, + {R2_MERGENOTPEN, 0x00bb00ff}, + {R2_COPYPEN, 0x00ccff00}, + {R2_MERGEPENNOT, 0x00ddffff}, + {R2_MERGEPEN, 0x00eeff00}, + {R2_WHITE, 0x00ffffff} + }; + D3DDEVICEDESC hal_caps, hel_caps; + IDirect3DExecuteBuffer *execute_buffer; + D3DEXECUTEBUFFERDESC exec_desc; + IDirect3DMaterial *background; + IDirect3DViewport *viewport; + IDirect3DDevice *device; + IDirectDrawSurface *rt; + IDirectDraw *ddraw; + UINT inst_length; + D3DCOLOR color; + HWND window; + HRESULT hr; + UINT x, y; + UINT i, j, k; + void *ptr; + + window = create_window(); + ddraw = create_ddraw(); + ok(!!ddraw, "Failed to create a ddraw object.\n"); + if (!(device = create_device_ex(ddraw, window, DDSCL_NORMAL, device_guid))) + { + skip("Failed to create a 3D device, skipping test.\n"); + IDirectDraw_Release(ddraw); + DestroyWindow(window); + return; + } + + hal_caps.dwSize = sizeof(hal_caps); + hel_caps.dwSize = sizeof(hel_caps); + hr = IDirect3DDevice_GetCaps(device, &hal_caps, &hel_caps); + ok(hr == D3D_OK, "Failed to get device caps, hr %#x\n", hr); + if (!(hal_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2) && + !(hel_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2)) + { + skip("Device does not support D3DRENDERSTATE_ROP2.\n"); + IDirect3DDevice_Release(device); + IDirectDraw_Release(ddraw); + DestroyWindow(window); + return; + } + + background = create_diffuse_material(device, 0.667f, 0.0f, 0.0f, 1.0f); + viewport = create_viewport(device, 0, 0, 640, 480); + viewport_set_background(device, viewport, background); + + memset(&exec_desc, 0, sizeof(exec_desc)); + exec_desc.dwSize = sizeof(exec_desc); + exec_desc.dwFlags = D3DDEB_BUFSIZE | D3DDEB_CAPS; + exec_desc.dwBufferSize = 1024; + exec_desc.dwCaps = D3DDEBCAPS_SYSTEMMEMORY; + + hr = IDirect3DDevice_CreateExecuteBuffer(device, &exec_desc, &execute_buffer, NULL); + ok(SUCCEEDED(hr), "Failed to create execute buffer, hr %#x.\n", hr); + + for (i = 0; i < ARRAY_SIZE(tests); ++i) + { + hr = IDirect3DExecuteBuffer_Lock(execute_buffer, &exec_desc); + ok(SUCCEEDED(hr), "Failed to lock execute buffer, hr %#x.\n", hr); + memcpy(exec_desc.lpData, tquad, sizeof(tquad)); + ptr = ((BYTE *)exec_desc.lpData) + sizeof(tquad); + emit_process_vertices(&ptr, D3DPROCESSVERTICES_COPY, 0, 4); + emit_set_rs(&ptr, D3DRENDERSTATE_ZENABLE, D3DZB_FALSE); + emit_set_rs(&ptr, D3DRENDERSTATE_ROP2, tests[i].rop2); + emit_tquad(&ptr, 0); + emit_end(&ptr); + inst_length = (BYTE *)ptr - (BYTE *)exec_desc.lpData; + inst_length -= sizeof(tquad); + hr = IDirect3DExecuteBuffer_Unlock(execute_buffer); + ok(SUCCEEDED(hr), "Failed to unlock execute buffer, hr %#x.\n", hr); + + hr = IDirect3DViewport_Clear(viewport, 1, &clear_rect, D3DCLEAR_TARGET); + ok(SUCCEEDED(hr), "Failed to clear viewport, hr %#x.\n", hr); + hr = IDirect3DDevice_BeginScene(device); + ok(SUCCEEDED(hr), "Failed to begin scene, hr %#x.\n", hr); + set_execute_data(execute_buffer, 4, sizeof(tquad), inst_length); + hr = IDirect3DDevice_Execute(device, execute_buffer, viewport, D3DEXECUTE_CLIPPED); + ok(SUCCEEDED(hr), "Failed to execute exec buffer, hr %#x.\n", hr); + hr = IDirect3DDevice_EndScene(device); + ok(SUCCEEDED(hr), "Failed to end scene, hr %#x.\n", hr); + + hr = IDirect3DDevice_QueryInterface(device, &IID_IDirectDrawSurface, (void **)&rt); + ok(SUCCEEDED(hr), "Failed to get render target, hr %#x.\n", hr); + for (j = 0; j < 4; ++j) + { + for (k = 0; k < 4; ++k) + { + x = 80 * ((2 * k) + 1); + y = 60 * ((2 * j) + 1); + color = get_surface_color(rt, x, y); + ok(compare_color(color, tests[i].expected, 1), + "Expected color 0x%08x at %u, %u, got 0x%08x.\n", tests[i].expected, x, y, color); + } + } + IDirectDrawSurface_Release(rt); + } + + destroy_viewport(device, viewport); + IDirect3DExecuteBuffer_Release(execute_buffer); + destroy_material(background); + IDirect3DDevice_Release(device); + IDirectDraw_Release(ddraw); + DestroyWindow(window); +} + START_TEST(ddraw1) { DDDEVICEIDENTIFIER identifier; @@ -15209,4 +15347,5 @@ START_TEST(ddraw1) test_get_display_mode(); run_for_each_device_type(test_texture_wrong_caps); test_filling_convention(); + run_for_each_device_type(test_rop2); } diff --git a/dlls/ddraw/tests/ddraw2.c b/dlls/ddraw/tests/ddraw2.c index eea87f4bac2..5f5008799fe 100644 --- a/dlls/ddraw/tests/ddraw2.c +++ b/dlls/ddraw/tests/ddraw2.c @@ -16031,6 +16031,122 @@ static void test_filling_convention(void) DestroyWindow(window); }
+static void test_rop2(const GUID *device_guid) +{ + static D3DRECT clear_rect = {{0}, {0}, {640}, {480}}; + static D3DTLVERTEX tquad[] = + { + {{ 0.0f}, {480.0f}, {-0.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{ 0.0f}, { 0.0f}, {-0.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{640.0f}, {480.0f}, { 1.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + {{640.0f}, { 0.0f}, { 1.5f}, {1.0f}, {0xffccff00}, {0x00000000}, {0.0f}, {0.0f}}, + }; + static struct + { + unsigned int rop2; + D3DCOLOR expected; + } + tests[] = + { + {R2_BLACK, 0x00000000}, + {R2_NOTMERGEPEN, 0x001100ff}, + {R2_MASKNOTPEN, 0x00220000}, + {R2_NOTCOPYPEN, 0x003300ff}, + {R2_MASKPENNOT, 0x0044ff00}, + {R2_NOT, 0x0055ffff}, + {R2_XORPEN, 0x0066ff00}, + {R2_NOTMASKPEN, 0x0077ffff}, + {R2_MASKPEN, 0x00880000}, + {R2_NOTXORPEN, 0x009900ff}, + {R2_NOP, 0x00aa0000}, + {R2_MERGENOTPEN, 0x00bb00ff}, + {R2_COPYPEN, 0x00ccff00}, + {R2_MERGEPENNOT, 0x00ddffff}, + {R2_MERGEPEN, 0x00eeff00}, + {R2_WHITE, 0x00ffffff} + }; + D3DDEVICEDESC hal_caps, hel_caps; + IDirect3DMaterial2 *background; + IDirect3DViewport2 *viewport; + IDirect3DDevice2 *device; + IDirectDrawSurface *rt; + IDirectDraw2 *ddraw; + D3DCOLOR color; + HWND window; + HRESULT hr; + UINT x, y; + UINT i, j, k; + + window = create_window(); + ddraw = create_ddraw(); + ok(!!ddraw, "Failed to create a ddraw object.\n"); + if (!(device = create_device_ex(ddraw, window, DDSCL_NORMAL, device_guid))) + { + skip("Failed to create a 3D device, skipping test.\n"); + IDirectDraw_Release(ddraw); + DestroyWindow(window); + return; + } + + hal_caps.dwSize = sizeof(hal_caps); + hel_caps.dwSize = sizeof(hel_caps); + IDirect3DDevice2_GetCaps(device, &hal_caps, &hel_caps); + if (!(hal_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2) && + !(hel_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2)) + { + skip("Device does not support D3DRENDERSTATE_ROP2.\n"); + IDirect3DDevice2_Release(device); + IDirectDraw_Release(ddraw); + DestroyWindow(window); + return; + } + + background = create_diffuse_material(device, 0.667f, 0.0f, 0.0f, 1.0f); + viewport = create_viewport(device, 0, 0, 640, 480); + viewport_set_background(device, viewport, background); + hr = IDirect3DDevice2_SetCurrentViewport(device, viewport); + ok(SUCCEEDED(hr), "Failed to set current viewport, hr %#x.\n", hr); + + hr = IDirect3DDevice2_SetRenderState(device, D3DRENDERSTATE_ZENABLE, D3DZB_FALSE); + ok(SUCCEEDED(hr), "Failed to disable z-buffering, hr %#x.\n", hr); + + for (i = 0; i < ARRAY_SIZE(tests); ++i) + { + hr = IDirect3DDevice2_SetRenderState(device, D3DRENDERSTATE_ROP2, tests[i].rop2); + ok(SUCCEEDED(hr), "Failed to set raster op, hr %#x.\n", hr); + + hr = IDirect3DViewport2_Clear(viewport, 1, &clear_rect, D3DCLEAR_TARGET); + ok(SUCCEEDED(hr), "Failed to clear viewport, hr %#x.\n", hr); + hr = IDirect3DDevice2_BeginScene(device); + ok(SUCCEEDED(hr), "Failed to begin scene, hr %#x.\n", hr); + hr = IDirect3DDevice2_DrawPrimitive(device, D3DPT_TRIANGLESTRIP, D3DVT_TLVERTEX, tquad, 4, 0); + ok(SUCCEEDED(hr), "Failed to draw, hr %#x.\n", hr); + hr = IDirect3DDevice2_EndScene(device); + ok(SUCCEEDED(hr), "Failed to end scene, hr %#x.\n", hr); + + hr = IDirect3DDevice2_GetRenderTarget(device, &rt); + ok(SUCCEEDED(hr), "Failed to get render target, hr %#x.\n", hr); + for (j = 0; j < 4; ++j) + { + for (k = 0; k < 4; ++k) + { + x = 80 * ((2 * k) + 1); + y = 60 * ((2 * j) + 1); + color = get_surface_color(rt, x, y); + ok(compare_color(color, tests[i].expected, 1), + "Expected color 0x%08x at %u, %u, got 0x%08x.\n", tests[i].expected, x, y, color); + } + } + IDirectDrawSurface_Release(rt); + } + + destroy_viewport(device, viewport); + destroy_material(background); + IDirect3DDevice2_Release(device); + IDirectDraw2_Release(ddraw); + DestroyWindow(window); +} + static void run_for_each_device_type(void (*test_func)(const GUID *)) { test_func(&IID_IDirect3DHALDevice); @@ -16161,4 +16277,5 @@ START_TEST(ddraw2) test_get_display_mode(); run_for_each_device_type(test_texture_wrong_caps); test_filling_convention(); + run_for_each_device_type(test_rop2); } diff --git a/dlls/ddraw/tests/ddraw4.c b/dlls/ddraw/tests/ddraw4.c index 136cf90fa60..7b3216001cd 100644 --- a/dlls/ddraw/tests/ddraw4.c +++ b/dlls/ddraw/tests/ddraw4.c @@ -19089,6 +19089,117 @@ static void test_filling_convention(void) DestroyWindow(window); }
+static void test_rop2(const GUID *device_guid) +{ + static D3DRECT clear_rect = {{0}, {0}, {640}, {480}}; + static struct + { + struct vec4 position; + D3DCOLOR diffuse; + } + tquad[] = + { + {{ 0.0f, 480.0f, -0.5f, 1.0f}, 0xffccff00}, + {{ 0.0f, 0.0f, -0.5f, 1.0f}, 0xffccff00}, + {{640.0f, 480.0f, 1.5f, 1.0f}, 0xffccff00}, + {{640.0f, 0.0f, 1.5f, 1.0f}, 0xffccff00} + }; + static struct + { + unsigned int rop2; + D3DCOLOR expected; + } + tests[] = + { + {R2_BLACK, 0x00000000}, + {R2_NOTMERGEPEN, 0x001100ff}, + {R2_MASKNOTPEN, 0x00220000}, + {R2_NOTCOPYPEN, 0x003300ff}, + {R2_MASKPENNOT, 0x0044ff00}, + {R2_NOT, 0x0055ffff}, + {R2_XORPEN, 0x0066ff00}, + {R2_NOTMASKPEN, 0x0077ffff}, + {R2_MASKPEN, 0x00880000}, + {R2_NOTXORPEN, 0x009900ff}, + {R2_NOP, 0x00aa0000}, + {R2_MERGENOTPEN, 0x00bb00ff}, + {R2_COPYPEN, 0x00ccff00}, + {R2_MERGEPENNOT, 0x00ddffff}, + {R2_MERGEPEN, 0x00eeff00}, + {R2_WHITE, 0x00ffffff} + }; + D3DDEVICEDESC hal_caps, hel_caps; + IDirect3DViewport3 *viewport; + IDirect3DDevice3 *device; + IDirectDrawSurface4 *rt; + D3DCOLOR color; + HWND window; + HRESULT hr; + UINT x, y; + UINT i, j, k; + + window = create_window(); + if (!(device = create_device_ex(window, DDSCL_NORMAL, device_guid))) + { + skip("Failed to create a 3D device, skipping test.\n"); + DestroyWindow(window); + return; + } + + hal_caps.dwSize = sizeof(hal_caps); + hel_caps.dwSize = sizeof(hel_caps); + IDirect3DDevice3_GetCaps(device, &hal_caps, &hel_caps); + if (!(hal_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2) && + !(hel_caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2)) + { + skip("Device does not support D3DRENDERSTATE_ROP2.\n"); + IDirect3DDevice3_Release(device); + DestroyWindow(window); + return; + } + + viewport = create_viewport(device, 0, 0, 640, 480); + hr = IDirect3DDevice3_SetCurrentViewport(device, viewport); + ok(SUCCEEDED(hr), "Failed to set current viewport, hr %#x.\n", hr); + + hr = IDirect3DDevice3_SetRenderState(device, D3DRENDERSTATE_ZENABLE, D3DZB_FALSE); + ok(SUCCEEDED(hr), "Failed to disable z-buffering, hr %#x.\n", hr); + + for (i = 0; i < ARRAY_SIZE(tests); ++i) + { + hr = IDirect3DDevice3_SetRenderState(device, D3DRENDERSTATE_ROP2, tests[i].rop2); + ok(SUCCEEDED(hr), "Failed to set raster op, hr %#x.\n", hr); + + hr = IDirect3DViewport3_Clear2(viewport, 1, &clear_rect, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, 0xffaa0000, 0.0f, 0); + ok(SUCCEEDED(hr), "Failed to clear viewport, hr %#x.\n", hr); + hr = IDirect3DDevice3_BeginScene(device); + ok(SUCCEEDED(hr), "Failed to begin scene, hr %#x.\n", hr); + hr = IDirect3DDevice3_DrawPrimitive(device, D3DPT_TRIANGLESTRIP, D3DFVF_XYZRHW | D3DFVF_DIFFUSE, tquad, 4, 0); + ok(SUCCEEDED(hr), "Failed to draw, hr %#x.\n", hr); + hr = IDirect3DDevice3_EndScene(device); + ok(SUCCEEDED(hr), "Failed to end scene, hr %#x.\n", hr); + + hr = IDirect3DDevice3_GetRenderTarget(device, &rt); + ok(SUCCEEDED(hr), "Failed to get render target, hr %#x.\n", hr); + for (j = 0; j < 4; ++j) + { + for (k = 0; k < 4; ++k) + { + x = 80 * ((2 * k) + 1); + y = 60 * ((2 * j) + 1); + color = get_surface_color(rt, x, y); + ok(compare_color(color, tests[i].expected, 1), + "Expected color 0x%08x at %u, %u, got 0x%08x.\n", tests[i].expected, x, y, color); + } + } + IDirectDrawSurface4_Release(rt); + } + + destroy_viewport(device, viewport); + IDirect3DDevice3_Release(device); + DestroyWindow(window); +} + START_TEST(ddraw4) { DDDEVICEIDENTIFIER identifier; @@ -19229,4 +19340,5 @@ START_TEST(ddraw4) test_get_display_mode(); run_for_each_device_type(test_texture_wrong_caps); test_filling_convention(); + run_for_each_device_type(test_rop2); } diff --git a/dlls/ddraw/tests/ddraw7.c b/dlls/ddraw/tests/ddraw7.c index 711eac2a6d6..a22e3942f39 100644 --- a/dlls/ddraw/tests/ddraw7.c +++ b/dlls/ddraw/tests/ddraw7.c @@ -19324,6 +19324,107 @@ static void test_filling_convention(void) DestroyWindow(window); }
+static void test_rop2(const GUID *device_guid) +{ + static struct + { + struct vec4 position; + D3DCOLOR diffuse; + } + tquad[] = + { + {{ 0.0f, 480.0f, -0.5f, 1.0f}, 0xffccff00}, + {{ 0.0f, 0.0f, -0.5f, 1.0f}, 0xffccff00}, + {{640.0f, 480.0f, 1.5f, 1.0f}, 0xffccff00}, + {{640.0f, 0.0f, 1.5f, 1.0f}, 0xffccff00} + }; + static struct + { + unsigned int rop2; + D3DCOLOR expected; + } + tests[] = + { + {R2_BLACK, 0x00000000}, + {R2_NOTMERGEPEN, 0x001100ff}, + {R2_MASKNOTPEN, 0x00220000}, + {R2_NOTCOPYPEN, 0x003300ff}, + {R2_MASKPENNOT, 0x0044ff00}, + {R2_NOT, 0x0055ffff}, + {R2_XORPEN, 0x0066ff00}, + {R2_NOTMASKPEN, 0x0077ffff}, + {R2_MASKPEN, 0x00880000}, + {R2_NOTXORPEN, 0x009900ff}, + {R2_NOP, 0x00aa0000}, + {R2_MERGENOTPEN, 0x00bb00ff}, + {R2_COPYPEN, 0x00ccff00}, + {R2_MERGEPENNOT, 0x00ddffff}, + {R2_MERGEPEN, 0x00eeff00}, + {R2_WHITE, 0x00ffffff} + }; + D3DDEVICEDESC7 caps; + IDirect3DDevice7 *device; + IDirectDrawSurface7 *rt; + D3DCOLOR color; + HWND window; + HRESULT hr; + UINT x, y; + UINT i, j, k; + + window = create_window(); + if (!(device = create_device_ex(window, DDSCL_NORMAL, device_guid))) + { + skip("Failed to create a 3D device, skipping test.\n"); + DestroyWindow(window); + return; + } + + IDirect3DDevice7_GetCaps(device, &caps); + if (!(caps.dpcTriCaps.dwRasterCaps & D3DPRASTERCAPS_ROP2)) + { + skip("Device does not support D3DRENDERSTATE_ROP2.\n"); + IDirect3DDevice7_Release(device); + DestroyWindow(window); + return; + } + + hr = IDirect3DDevice7_SetRenderState(device, D3DRENDERSTATE_ZENABLE, D3DZB_FALSE); + ok(SUCCEEDED(hr), "Failed to disable z-buffering, hr %#x.\n", hr); + + for (i = 0; i < ARRAY_SIZE(tests); ++i) + { + hr = IDirect3DDevice7_SetRenderState(device, D3DRENDERSTATE_ROP2, tests[i].rop2); + ok(SUCCEEDED(hr), "Failed to set raster op, hr %#x.\n", hr); + + hr = IDirect3DDevice7_Clear(device, 0, NULL, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, 0xffaa0000, 0.0f, 0); + ok(SUCCEEDED(hr), "Failed to clear viewport, hr %#x.\n", hr); + hr = IDirect3DDevice7_BeginScene(device); + ok(SUCCEEDED(hr), "Failed to begin scene, hr %#x.\n", hr); + hr = IDirect3DDevice7_DrawPrimitive(device, D3DPT_TRIANGLESTRIP, D3DFVF_XYZRHW | D3DFVF_DIFFUSE, tquad, 4, 0); + ok(SUCCEEDED(hr), "Failed to draw, hr %#x.\n", hr); + hr = IDirect3DDevice7_EndScene(device); + ok(SUCCEEDED(hr), "Failed to end scene, hr %#x.\n", hr); + + hr = IDirect3DDevice7_GetRenderTarget(device, &rt); + ok(SUCCEEDED(hr), "Failed to get render target, hr %#x.\n", hr); + for (j = 0; j < 4; ++j) + { + for (k = 0; k < 4; ++k) + { + x = 80 * ((2 * k) + 1); + y = 60 * ((2 * j) + 1); + color = get_surface_color(rt, x, y); + ok(compare_color(color, tests[i].expected, 1), + "Expected color 0x%08x at %u, %u, got 0x%08x.\n", tests[i].expected, x, y, color); + } + } + IDirectDrawSurface7_Release(rt); + } + + IDirect3DDevice7_Release(device); + DestroyWindow(window); +} + static void run_for_each_device_type(void (*test_func)(const GUID *)) { test_func(hw_device_guid); @@ -19502,4 +19603,5 @@ START_TEST(ddraw7) test_get_display_mode(); run_for_each_device_type(test_texture_wrong_caps); test_filling_convention(); + run_for_each_device_type(test_rop2); }
Signed-off-by: Chip Davis cdavis5x@gmail.com --- dlls/d3d11/tests/d3d11.c | 152 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+)
diff --git a/dlls/d3d11/tests/d3d11.c b/dlls/d3d11/tests/d3d11.c index 6c0ae089f78..425f05d47fc 100644 --- a/dlls/d3d11/tests/d3d11.c +++ b/dlls/d3d11/tests/d3d11.c @@ -34034,6 +34034,157 @@ static void test_user_defined_annotation(void) release_test_context(&test_context); }
+static void test_logic_op(void) +{ + D3D11_FEATURE_DATA_D3D11_OPTIONS options; + struct d3d11_test_context test_context; + D3D11_TEXTURE2D_DESC texture_desc; + ID3D11RenderTargetView *rtvs[8]; + ID3D11BlendState1 *blend_state; + ID3D11DeviceContext *context; + struct resource_readback rb; + ID3D11Texture2D *rts[8]; + ID3D11PixelShader *ps; + ID3D11Device *device; + ID3D11Device1 *device1; + unsigned int i, j; + DWORD color; + HRESULT hr; + + static const DWORD ps_code[] = + { +#if 0 + void main(float4 position : SV_Position, + out uint4 t0 : SV_Target0, out uint4 t1 : SV_Target1, + out uint4 t2 : SV_Target2, out uint4 t3 : SV_Target3, + out uint4 t4 : SV_Target4, out uint4 t5 : SV_Target5, + out uint4 t6 : SV_Target6, out uint4 t7 : SV_Target7) + { + t0 = t1 = t2 = t3 = t4 = t5 = t6 = t7 = uint4(0x00, 0x00, 0xff, 0xff); + } +#endif + 0x43425844, 0x4ed0bba7, 0x9f7d54c4, 0xba1e3dce, 0xc29634f8, 0x00000001, 0x000002b0, 0x00000003, + 0x0000002c, 0x00000060, 0x0000013c, 0x4e475349, 0x0000002c, 0x00000001, 0x00000008, 0x00000020, + 0x00000000, 0x00000001, 0x00000003, 0x00000000, 0x0000000f, 0x505f5653, 0x7469736f, 0x006e6f69, + 0x4e47534f, 0x000000d4, 0x00000008, 0x00000008, 0x000000c8, 0x00000000, 0x00000000, 0x00000001, + 0x00000000, 0x0000000f, 0x000000c8, 0x00000001, 0x00000000, 0x00000001, 0x00000001, 0x0000000f, + 0x000000c8, 0x00000002, 0x00000000, 0x00000001, 0x00000002, 0x0000000f, 0x000000c8, 0x00000003, + 0x00000000, 0x00000001, 0x00000003, 0x0000000f, 0x000000c8, 0x00000004, 0x00000000, 0x00000001, + 0x00000004, 0x0000000f, 0x000000c8, 0x00000005, 0x00000000, 0x00000001, 0x00000005, 0x0000000f, + 0x000000c8, 0x00000006, 0x00000000, 0x00000001, 0x00000006, 0x0000000f, 0x000000c8, 0x00000007, + 0x00000000, 0x00000001, 0x00000007, 0x0000000f, 0x545f5653, 0x65677261, 0xabab0074, 0x52444853, + 0x0000016c, 0x00000040, 0x0000005b, 0x03000065, 0x001020f2, 0x00000000, 0x03000065, 0x001020f2, + 0x00000001, 0x03000065, 0x001020f2, 0x00000002, 0x03000065, 0x001020f2, 0x00000003, 0x03000065, + 0x001020f2, 0x00000004, 0x03000065, 0x001020f2, 0x00000005, 0x03000065, 0x001020f2, 0x00000006, + 0x03000065, 0x001020f2, 0x00000007, 0x08000036, 0x001020f2, 0x00000000, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000001, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000002, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000003, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000004, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000005, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000006, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x08000036, 0x001020f2, 0x00000007, 0x00004002, 0x00000000, + 0x00000000, 0x000000ff, 0x000000ff, 0x0100003e + }; + + D3D11_BLEND_DESC1 blend_desc = + { + .IndependentBlendEnable = TRUE, + .RenderTarget = + { + {FALSE, TRUE, D3D11_BLEND_ONE, D3D11_BLEND_ZERO, D3D11_BLEND_OP_ADD, + D3D11_BLEND_ONE, D3D11_BLEND_ZERO, D3D11_BLEND_OP_ADD, D3D11_LOGIC_OP_CLEAR, + D3D11_COLOR_WRITE_ENABLE_ALL}, + {FALSE, TRUE, D3D11_BLEND_ONE, D3D11_BLEND_ZERO, D3D11_BLEND_OP_ADD, + D3D11_BLEND_ZERO, D3D11_BLEND_ONE, D3D11_BLEND_OP_ADD, D3D11_LOGIC_OP_CLEAR, + D3D11_COLOR_WRITE_ENABLE_ALL}, + }, + }; + + static const D3D11_LOGIC_OP ops[] = + {D3D11_LOGIC_OP_CLEAR, D3D11_LOGIC_OP_NOR, D3D11_LOGIC_OP_AND_INVERTED, D3D11_LOGIC_OP_COPY_INVERTED, + D3D11_LOGIC_OP_AND_REVERSE, D3D11_LOGIC_OP_INVERT, D3D11_LOGIC_OP_XOR, D3D11_LOGIC_OP_NAND, + D3D11_LOGIC_OP_AND, D3D11_LOGIC_OP_EQUIV, D3D11_LOGIC_OP_NOOP, D3D11_LOGIC_OP_OR_INVERTED, + D3D11_LOGIC_OP_COPY, D3D11_LOGIC_OP_OR_REVERSE, D3D11_LOGIC_OP_OR, D3D11_LOGIC_OP_SET}; + static const DWORD expected_colors[] = + {0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff, 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff, + 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff, 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff}; + + static const float clear_color[] = {0.0f, 255.0f, 0.0f, 255.0f}; + + if (!init_test_context(&test_context, NULL)) + return; + + device = test_context.device; + context = test_context.immediate_context; + + if (FAILED(hr = ID3D11Device_CheckFeatureSupport(device, D3D11_FEATURE_D3D11_OPTIONS, &options, sizeof(options))) || + !options.OutputMergerLogicOp) + { + skip("Logic op is not supported.\n"); + release_test_context(&test_context); + return; + } + + hr = ID3D11Device_QueryInterface(device, &IID_ID3D11Device1, (void **)&device1); + ok(hr == S_OK, "Failed to get ID3D11Device1 interface, hr %#x.\n", hr); + + hr = ID3D11Device_CreatePixelShader(device, ps_code, sizeof(ps_code), NULL, &ps); + ok(hr == S_OK, "Failed to create pixel shader, hr %#x.\n", hr); + ID3D11DeviceContext_PSSetShader(context, ps, NULL, 0); + + hr = ID3D11Device1_CreateBlendState1(device1, &blend_desc, &blend_state); + ok(hr == E_INVALIDARG, "hr %#x.\n", hr); + + blend_desc.IndependentBlendEnable = FALSE; + hr = ID3D11Device1_CreateBlendState1(device1, &blend_desc, &blend_state); + ok(hr == S_OK, "hr %#x.\n", hr); + ID3D11BlendState1_Release(blend_state); + + ID3D11Texture2D_GetDesc(test_context.backbuffer, &texture_desc); + texture_desc.Format = DXGI_FORMAT_R8G8B8A8_UINT; + for (i = 0; i < 8; ++i) + { + hr = ID3D11Device_CreateTexture2D(device, &texture_desc, NULL, &rts[i]); + ok(hr == S_OK, "Failed to create texture %u, hr %#x.\n", i, hr); + + hr = ID3D11Device_CreateRenderTargetView(device, (ID3D11Resource *)rts[i], NULL, &rtvs[i]); + ok(hr == S_OK, "Failed to create rendertarget view %u, hr %#x.\n", i, hr); + } + + ID3D11DeviceContext_OMSetRenderTargets(context, 8, rtvs, NULL); + + for (i = 0; i < ARRAY_SIZE(ops); ++i) + { + blend_desc.RenderTarget[0].LogicOp = ops[i]; + hr = ID3D11Device1_CreateBlendState1(device1, &blend_desc, &blend_state); + ok(hr == S_OK, "hr %#x.\n", hr); + ID3D11DeviceContext_OMSetBlendState(context, (ID3D11BlendState *)blend_state, NULL, D3D11_DEFAULT_SAMPLE_MASK); + ID3D11BlendState1_Release(blend_state); + + for (j = 0; j < 8; ++j) + ID3D11DeviceContext_ClearRenderTargetView(context, rtvs[j], clear_color); + draw_quad(&test_context); + + for (j = 0; j < 8; ++j) + { + get_texture_readback(rts[j], 0, &rb); + color = get_readback_color(&rb, 320, 240, 0); + ok(compare_color(color, expected_colors[i], 1), "%u: Got unexpected color 0x%08x.\n", i, color); + release_resource_readback(&rb); + } + } + + for (i = 0; i < 8; i++) + { + ID3D11Texture2D_Release(rts[i]); + ID3D11RenderTargetView_Release(rtvs[i]); + } + ID3D11PixelShader_Release(ps); + ID3D11Device1_Release(device1); + release_test_context(&test_context); +} + START_TEST(d3d11) { unsigned int argc, i; @@ -34214,6 +34365,7 @@ START_TEST(d3d11) queue_test(test_constant_buffer_offset); queue_test(test_dynamic_map_synchronization); queue_test(test_user_defined_annotation); + queue_test(test_logic_op);
run_queued_tests();
Signed-off-by: Chip Davis cdavis5x@gmail.com --- dlls/d3d11/d3d11_private.h | 12 ++--- dlls/d3d11/device.c | 65 ++++++++++++++++++--------- dlls/d3d11/state.c | 92 ++++++++++++++++++++++++-------------- 3 files changed, 109 insertions(+), 60 deletions(-)
diff --git a/dlls/d3d11/d3d11_private.h b/dlls/d3d11/d3d11_private.h index efe26551258..29a01dd91ad 100644 --- a/dlls/d3d11/d3d11_private.h +++ b/dlls/d3d11/d3d11_private.h @@ -408,26 +408,26 @@ struct d3d11_class_linkage HRESULT d3d11_class_linkage_create(struct d3d_device *device, struct d3d11_class_linkage **class_linkage) DECLSPEC_HIDDEN;
-/* ID3D11BlendState, ID3D10BlendState1 */ +/* ID3D11BlendState1, ID3D10BlendState1 */ struct d3d_blend_state { - ID3D11BlendState ID3D11BlendState_iface; + ID3D11BlendState1 ID3D11BlendState1_iface; ID3D10BlendState1 ID3D10BlendState1_iface; LONG refcount;
struct wined3d_private_store private_store; struct wined3d_blend_state *wined3d_state; - D3D11_BLEND_DESC desc; + D3D11_BLEND_DESC1 desc; struct wine_rb_entry entry; ID3D11Device2 *device; };
-static inline struct d3d_blend_state *impl_from_ID3D11BlendState(ID3D11BlendState *iface) +static inline struct d3d_blend_state *impl_from_ID3D11BlendState1(ID3D11BlendState1 *iface) { - return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D11BlendState_iface); + return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D11BlendState1_iface); }
-HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC *desc, +HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC1 *desc, struct d3d_blend_state **state) DECLSPEC_HIDDEN; struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *iface) DECLSPEC_HIDDEN; struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface) DECLSPEC_HIDDEN; diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c index ecf45e9ce33..263613911f8 100644 --- a/dlls/d3d11/device.c +++ b/dlls/d3d11/device.c @@ -2204,7 +2204,7 @@ static void STDMETHODCALLTYPE d3d11_device_context_OMGetBlendState(ID3D11DeviceC if (wined3d_state) { blend_state_impl = wined3d_blend_state_get_parent(wined3d_state); - ID3D11BlendState_AddRef(*blend_state = &blend_state_impl->ID3D11BlendState_iface); + ID3D11BlendState_AddRef(*blend_state = (ID3D11BlendState *)&blend_state_impl->ID3D11BlendState1_iface); } else *blend_state = NULL; @@ -3632,23 +3632,53 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CreateClassLinkage(ID3D11Device2 * return S_OK; }
-static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface, - const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state) +static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState1(ID3D11Device2 *iface, + const D3D11_BLEND_DESC1 *desc, ID3D11BlendState1 **state) { struct d3d_device *device = impl_from_ID3D11Device2(iface); struct d3d_blend_state *object; HRESULT hr;
- TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state); + TRACE("iface %p, desc %p, state %p.\n", iface, desc, state);
if (FAILED(hr = d3d_blend_state_create(device, desc, &object))) return hr;
- *blend_state = &object->ID3D11BlendState_iface; + *state = &object->ID3D11BlendState1_iface;
return S_OK; }
+static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface, + const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state) +{ + D3D11_BLEND_DESC1 d3d11_1_desc; + unsigned int i; + + TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state); + + if (!desc) + return E_INVALIDARG; + + d3d11_1_desc.AlphaToCoverageEnable = desc->AlphaToCoverageEnable; + d3d11_1_desc.IndependentBlendEnable = desc->IndependentBlendEnable; + for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i) + { + d3d11_1_desc.RenderTarget[i].BlendEnable = desc->RenderTarget[i].BlendEnable; + d3d11_1_desc.RenderTarget[i].LogicOpEnable = FALSE; + d3d11_1_desc.RenderTarget[i].SrcBlend = desc->RenderTarget[i].SrcBlend; + d3d11_1_desc.RenderTarget[i].DestBlend = desc->RenderTarget[i].DestBlend; + d3d11_1_desc.RenderTarget[i].BlendOp = desc->RenderTarget[i].BlendOp; + d3d11_1_desc.RenderTarget[i].SrcBlendAlpha = desc->RenderTarget[i].SrcBlendAlpha; + d3d11_1_desc.RenderTarget[i].DestBlendAlpha = desc->RenderTarget[i].DestBlendAlpha; + d3d11_1_desc.RenderTarget[i].BlendOpAlpha = desc->RenderTarget[i].BlendOpAlpha; + d3d11_1_desc.RenderTarget[i].LogicOp = D3D11_LOGIC_OP_COPY; + d3d11_1_desc.RenderTarget[i].RenderTargetWriteMask = desc->RenderTarget[i].RenderTargetWriteMask; + } + + return d3d11_device_CreateBlendState1(iface, &d3d11_1_desc, (ID3D11BlendState1 **)blend_state); +} + static HRESULT STDMETHODCALLTYPE d3d11_device_CreateDepthStencilState(ID3D11Device2 *iface, const D3D11_DEPTH_STENCIL_DESC *desc, ID3D11DepthStencilState **depth_stencil_state) { @@ -4281,14 +4311,6 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CreateDeferredContext1(ID3D11Devic return S_OK; }
-static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState1(ID3D11Device2 *iface, - const D3D11_BLEND_DESC1 *desc, ID3D11BlendState1 **state) -{ - FIXME("iface %p, desc %p, state %p stub!\n", iface, desc, state); - - return E_NOTIMPL; -} - static HRESULT STDMETHODCALLTYPE d3d11_device_CreateRasterizerState1(ID3D11Device2 *iface, const D3D11_RASTERIZER_DESC1 *desc, ID3D11RasterizerState1 **state) { @@ -4993,7 +5015,8 @@ static void STDMETHODCALLTYPE d3d10_device_OMSetBlendState(ID3D10Device1 *iface,
blend_state_object = unsafe_impl_from_ID3D10BlendState(blend_state); d3d11_device_context_OMSetBlendState(&device->immediate_context.ID3D11DeviceContext1_iface, - blend_state_object ? &blend_state_object->ID3D11BlendState_iface : NULL, blend_factor, sample_mask); + blend_state_object ? (ID3D11BlendState *)&blend_state_object->ID3D11BlendState1_iface : NULL, + blend_factor, sample_mask); }
static void STDMETHODCALLTYPE d3d10_device_OMSetDepthStencilState(ID3D10Device1 *iface, @@ -5670,7 +5693,8 @@ static void STDMETHODCALLTYPE d3d10_device_OMGetBlendState(ID3D10Device1 *iface, { if (d3d11_blend_state) { - *blend_state = (ID3D10BlendState *)&impl_from_ID3D11BlendState(d3d11_blend_state)->ID3D10BlendState1_iface; + *blend_state = (ID3D10BlendState *)&impl_from_ID3D11BlendState1( + (ID3D11BlendState1 *)d3d11_blend_state)->ID3D10BlendState1_iface; ID3D10BlendState_AddRef(*blend_state); } else @@ -6267,16 +6291,15 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateBlendState1(ID3D10Device1 *i const D3D10_BLEND_DESC1 *desc, ID3D10BlendState1 **blend_state) { struct d3d_device *device = impl_from_ID3D10Device(iface); - struct d3d_blend_state *object; + ID3D11BlendState *object; HRESULT hr;
TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
- if (FAILED(hr = d3d_blend_state_create(device, (const D3D11_BLEND_DESC *)desc, &object))) + if (FAILED(hr = d3d11_device_CreateBlendState(&device->ID3D11Device2_iface, (const D3D11_BLEND_DESC *)desc, &object))) return hr;
- *blend_state = &object->ID3D10BlendState1_iface; - + *blend_state = &impl_from_ID3D11BlendState1((ID3D11BlendState1 *)object)->ID3D10BlendState1_iface; return S_OK; }
@@ -6867,8 +6890,8 @@ static int d3d_sampler_state_compare(const void *key, const struct wine_rb_entry
static int d3d_blend_state_compare(const void *key, const struct wine_rb_entry *entry) { - const D3D11_BLEND_DESC *ka = key; - const D3D11_BLEND_DESC *kb = &WINE_RB_ENTRY_VALUE(entry, const struct d3d_blend_state, entry)->desc; + const D3D11_BLEND_DESC1 *ka = key; + const D3D11_BLEND_DESC1 *kb = &WINE_RB_ENTRY_VALUE(entry, const struct d3d_blend_state, entry)->desc;
return memcmp(ka, kb, sizeof(*ka)); } diff --git a/dlls/d3d11/state.c b/dlls/d3d11/state.c index f67017ff1ef..e465d4113e3 100644 --- a/dlls/d3d11/state.c +++ b/dlls/d3d11/state.c @@ -21,20 +21,21 @@
WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
-/* ID3D11BlendState methods */ +/* ID3D11BlendState1 methods */
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendState1 *iface, REFIID riid, void **object) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
- if (IsEqualGUID(riid, &IID_ID3D11BlendState) + if (IsEqualGUID(riid, &IID_ID3D11BlendState1) + || IsEqualGUID(riid, &IID_ID3D11BlendState) || IsEqualGUID(riid, &IID_ID3D11DeviceChild) || IsEqualGUID(riid, &IID_IUnknown)) { - ID3D11BlendState_AddRef(iface); + ID3D11BlendState1_AddRef(iface); *object = iface; return S_OK; } @@ -54,9 +55,9 @@ static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendSta return E_NOINTERFACE; }
-static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState *iface) +static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState1 *iface) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface); ULONG refcount = InterlockedIncrement(&state->refcount);
TRACE("%p increasing refcount to %lu.\n", state, refcount); @@ -70,9 +71,9 @@ static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState *iface) return refcount; }
-static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState *iface) +static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState1 *iface) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface); ULONG refcount = InterlockedDecrement(&state->refcount);
TRACE("%p decreasing refcount to %lu.\n", state, refcount); @@ -87,10 +88,10 @@ static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState *iface return refcount; }
-static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState *iface, +static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState1 *iface, ID3D11Device **device) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, device %p.\n", iface, device);
@@ -98,46 +99,69 @@ static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState *ifac ID3D11Device_AddRef(*device); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_GetPrivateData(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_GetPrivateData(ID3D11BlendState1 *iface, REFGUID guid, UINT *data_size, void *data) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
return d3d_get_private_data(&state->private_store, guid, data_size, data); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateData(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateData(ID3D11BlendState1 *iface, REFGUID guid, UINT data_size, const void *data) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
return d3d_set_private_data(&state->private_store, guid, data_size, data); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateDataInterface(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateDataInterface(ID3D11BlendState1 *iface, REFGUID guid, const IUnknown *data) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
return d3d_set_private_data_interface(&state->private_store, guid, data); }
-static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc(ID3D11BlendState *iface, D3D11_BLEND_DESC *desc) +static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc(ID3D11BlendState1 *iface, D3D11_BLEND_DESC *desc) { - struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface); + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface); + const D3D11_BLEND_DESC1 *d3d11_desc = &state->desc; + unsigned int i; + + TRACE("iface %p, desc %p.\n", iface, desc); + + desc->AlphaToCoverageEnable = d3d11_desc->AlphaToCoverageEnable; + desc->IndependentBlendEnable = d3d11_desc->IndependentBlendEnable; + for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i) + { + desc->RenderTarget[i].BlendEnable = d3d11_desc->RenderTarget[i].BlendEnable; + desc->RenderTarget[i].SrcBlend = d3d11_desc->RenderTarget[i].SrcBlend; + desc->RenderTarget[i].DestBlend = d3d11_desc->RenderTarget[i].DestBlend; + desc->RenderTarget[i].BlendOp = d3d11_desc->RenderTarget[i].BlendOp; + desc->RenderTarget[i].SrcBlendAlpha = d3d11_desc->RenderTarget[i].SrcBlendAlpha; + desc->RenderTarget[i].DestBlendAlpha = d3d11_desc->RenderTarget[i].DestBlendAlpha; + desc->RenderTarget[i].BlendOpAlpha = d3d11_desc->RenderTarget[i].BlendOpAlpha; + desc->RenderTarget[i].RenderTargetWriteMask = d3d11_desc->RenderTarget[i].RenderTargetWriteMask; + } +} + +static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc1(ID3D11BlendState1 *iface, D3D11_BLEND_DESC1 *desc) +{ + struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, desc %p.\n", iface, desc);
*desc = state->desc; }
-static const struct ID3D11BlendStateVtbl d3d11_blend_state_vtbl = +static const struct ID3D11BlendState1Vtbl d3d11_blend_state_vtbl = { /* IUnknown methods */ d3d11_blend_state_QueryInterface, @@ -150,6 +174,8 @@ static const struct ID3D11BlendStateVtbl d3d11_blend_state_vtbl = d3d11_blend_state_SetPrivateDataInterface, /* ID3D11BlendState methods */ d3d11_blend_state_GetDesc, + /* ID3D11BlendState1 methods */ + d3d11_blend_state_GetDesc1, };
/* ID3D10BlendState methods */ @@ -168,7 +194,7 @@ static HRESULT STDMETHODCALLTYPE d3d10_blend_state_QueryInterface(ID3D10BlendSta
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
- return d3d11_blend_state_QueryInterface(&state->ID3D11BlendState_iface, riid, object); + return d3d11_blend_state_QueryInterface(&state->ID3D11BlendState1_iface, riid, object); }
static ULONG STDMETHODCALLTYPE d3d10_blend_state_AddRef(ID3D10BlendState1 *iface) @@ -177,7 +203,7 @@ static ULONG STDMETHODCALLTYPE d3d10_blend_state_AddRef(ID3D10BlendState1 *iface
TRACE("iface %p.\n", iface);
- return d3d11_blend_state_AddRef(&state->ID3D11BlendState_iface); + return d3d11_blend_state_AddRef(&state->ID3D11BlendState1_iface); }
static ULONG STDMETHODCALLTYPE d3d10_blend_state_Release(ID3D10BlendState1 *iface) @@ -186,7 +212,7 @@ static ULONG STDMETHODCALLTYPE d3d10_blend_state_Release(ID3D10BlendState1 *ifac
TRACE("iface %p.\n", iface);
- return d3d11_blend_state_Release(&state->ID3D11BlendState_iface); + return d3d11_blend_state_Release(&state->ID3D11BlendState1_iface); }
/* ID3D10DeviceChild methods */ @@ -247,7 +273,7 @@ static D3D10_BLEND_OP d3d10_blend_op_from_d3d11(D3D11_BLEND_OP op) static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc(ID3D10BlendState1 *iface, D3D10_BLEND_DESC *desc) { struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface); - const D3D11_BLEND_DESC *d3d11_desc = &state->desc; + const D3D11_BLEND_DESC1 *d3d11_desc = &state->desc; unsigned int i;
TRACE("iface %p, desc %p.\n", iface, desc); @@ -272,7 +298,7 @@ static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc1(ID3D10BlendState1 *ifac
TRACE("iface %p, desc %p.\n", iface, desc);
- memcpy(desc, &state->desc, sizeof(*desc)); + d3d11_blend_state_GetDesc(&state->ID3D11BlendState1_iface, (D3D11_BLEND_DESC *)desc); }
static const struct ID3D10BlendState1Vtbl d3d10_blend_state_vtbl = @@ -317,21 +343,21 @@ static enum wined3d_blend_op wined3d_blend_op_from_d3d11(D3D11_BLEND_OP op) return (enum wined3d_blend_op)op; }
-HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC *desc, +HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC1 *desc, struct d3d_blend_state **state) { struct wined3d_blend_state_desc wined3d_desc; struct d3d_blend_state *object; struct wine_rb_entry *entry; - D3D11_BLEND_DESC tmp_desc; + D3D11_BLEND_DESC1 tmp_desc; unsigned int i, j; HRESULT hr;
if (!desc) return E_INVALIDARG;
- /* D3D11_RENDER_TARGET_BLEND_DESC has a hole, which is a problem because we use - * D3D11_BLEND_DESC as a key in the rbtree. */ + /* D3D11_RENDER_TARGET_BLEND_DESC1 has a hole, which is a problem because we use + * D3D11_BLEND_DESC1 as a key in the rbtree. */ memset(&tmp_desc, 0, sizeof(tmp_desc)); tmp_desc.AlphaToCoverageEnable = desc->AlphaToCoverageEnable; tmp_desc.IndependentBlendEnable = desc->IndependentBlendEnable; @@ -366,7 +392,7 @@ HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC object = WINE_RB_ENTRY_VALUE(entry, struct d3d_blend_state, entry);
TRACE("Returning existing blend state %p.\n", object); - ID3D11BlendState_AddRef(&object->ID3D11BlendState_iface); + ID3D11BlendState1_AddRef(&object->ID3D11BlendState1_iface); *state = object; wined3d_mutex_unlock();
@@ -379,7 +405,7 @@ HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC return E_OUTOFMEMORY; }
- object->ID3D11BlendState_iface.lpVtbl = &d3d11_blend_state_vtbl; + object->ID3D11BlendState1_iface.lpVtbl = &d3d11_blend_state_vtbl; object->ID3D10BlendState1_iface.lpVtbl = &d3d10_blend_state_vtbl; object->refcount = 1; wined3d_private_store_init(&object->private_store); @@ -434,9 +460,9 @@ struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *ifac { if (!iface) return NULL; - assert(iface->lpVtbl == &d3d11_blend_state_vtbl); + assert(iface->lpVtbl == (ID3D11BlendStateVtbl *)&d3d11_blend_state_vtbl);
- return impl_from_ID3D11BlendState(iface); + return impl_from_ID3D11BlendState1((ID3D11BlendState1 *)iface); }
struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface)
On 2022-05-13 11:46, Chip Davis wrote:
Signed-off-by: Chip Davis cdavis5x@gmail.com
dlls/d3d11/d3d11_private.h | 12 ++--- dlls/d3d11/device.c | 65 ++++++++++++++++++--------- dlls/d3d11/state.c | 92 ++++++++++++++++++++++++-------------- 3 files changed, 109 insertions(+), 60 deletions(-)
diff --git a/dlls/d3d11/d3d11_private.h b/dlls/d3d11/d3d11_private.h index efe26551258..29a01dd91ad 100644 --- a/dlls/d3d11/d3d11_private.h +++ b/dlls/d3d11/d3d11_private.h @@ -408,26 +408,26 @@ struct d3d11_class_linkage HRESULT d3d11_class_linkage_create(struct d3d_device *device, struct d3d11_class_linkage **class_linkage) DECLSPEC_HIDDEN;
-/* ID3D11BlendState, ID3D10BlendState1 */ +/* ID3D11BlendState1, ID3D10BlendState1 */ struct d3d_blend_state {
- ID3D11BlendState ID3D11BlendState_iface;
ID3D11BlendState1 ID3D11BlendState1_iface; ID3D10BlendState1 ID3D10BlendState1_iface; LONG refcount;
struct wined3d_private_store private_store; struct wined3d_blend_state *wined3d_state;
- D3D11_BLEND_DESC desc;
- D3D11_BLEND_DESC1 desc; struct wine_rb_entry entry; ID3D11Device2 *device; };
-static inline struct d3d_blend_state *impl_from_ID3D11BlendState(ID3D11BlendState *iface) +static inline struct d3d_blend_state *impl_from_ID3D11BlendState1(ID3D11BlendState1 *iface) {
- return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D11BlendState_iface);
- return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D11BlendState1_iface); }
-HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC *desc, +HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC1 *desc, struct d3d_blend_state **state) DECLSPEC_HIDDEN; struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *iface) DECLSPEC_HIDDEN; struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface) DECLSPEC_HIDDEN; diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c index ecf45e9ce33..263613911f8 100644 --- a/dlls/d3d11/device.c +++ b/dlls/d3d11/device.c @@ -2204,7 +2204,7 @@ static void STDMETHODCALLTYPE d3d11_device_context_OMGetBlendState(ID3D11DeviceC if (wined3d_state) { blend_state_impl = wined3d_blend_state_get_parent(wined3d_state);
ID3D11BlendState_AddRef(*blend_state = &blend_state_impl->ID3D11BlendState_iface);
ID3D11BlendState_AddRef(*blend_state = (ID3D11BlendState *)&blend_state_impl->ID3D11BlendState1_iface); } else *blend_state = NULL;
@@ -3632,23 +3632,53 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CreateClassLinkage(ID3D11Device2 * return S_OK; }
-static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface,
const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state)
+static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState1(ID3D11Device2 *iface,
{ struct d3d_device *device = impl_from_ID3D11Device2(iface); struct d3d_blend_state *object; HRESULT hr;const D3D11_BLEND_DESC1 *desc, ID3D11BlendState1 **state)
- TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
TRACE("iface %p, desc %p, state %p.\n", iface, desc, state);
if (FAILED(hr = d3d_blend_state_create(device, desc, &object))) return hr;
- *blend_state = &object->ID3D11BlendState_iface;
*state = &object->ID3D11BlendState1_iface;
return S_OK; }
+static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface,
const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state)
+{
- D3D11_BLEND_DESC1 d3d11_1_desc;
- unsigned int i;
- TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
- if (!desc)
return E_INVALIDARG;
- d3d11_1_desc.AlphaToCoverageEnable = desc->AlphaToCoverageEnable;
- d3d11_1_desc.IndependentBlendEnable = desc->IndependentBlendEnable;
- for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i)
- {
d3d11_1_desc.RenderTarget[i].BlendEnable = desc->RenderTarget[i].BlendEnable;
d3d11_1_desc.RenderTarget[i].LogicOpEnable = FALSE;
d3d11_1_desc.RenderTarget[i].SrcBlend = desc->RenderTarget[i].SrcBlend;
d3d11_1_desc.RenderTarget[i].DestBlend = desc->RenderTarget[i].DestBlend;
d3d11_1_desc.RenderTarget[i].BlendOp = desc->RenderTarget[i].BlendOp;
d3d11_1_desc.RenderTarget[i].SrcBlendAlpha = desc->RenderTarget[i].SrcBlendAlpha;
d3d11_1_desc.RenderTarget[i].DestBlendAlpha = desc->RenderTarget[i].DestBlendAlpha;
d3d11_1_desc.RenderTarget[i].BlendOpAlpha = desc->RenderTarget[i].BlendOpAlpha;
d3d11_1_desc.RenderTarget[i].LogicOp = D3D11_LOGIC_OP_COPY;
d3d11_1_desc.RenderTarget[i].RenderTargetWriteMask = desc->RenderTarget[i].RenderTargetWriteMask;
- }
Shouldn't this include a FIXME to warn that LogicOp is hard coded?
- return d3d11_device_CreateBlendState1(iface, &d3d11_1_desc, (ID3D11BlendState1 **)blend_state);
+}
- static HRESULT STDMETHODCALLTYPE d3d11_device_CreateDepthStencilState(ID3D11Device2 *iface, const D3D11_DEPTH_STENCIL_DESC *desc, ID3D11DepthStencilState **depth_stencil_state) {
@@ -4281,14 +4311,6 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CreateDeferredContext1(ID3D11Devic return S_OK; }
-static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState1(ID3D11Device2 *iface,
const D3D11_BLEND_DESC1 *desc, ID3D11BlendState1 **state)
-{
- FIXME("iface %p, desc %p, state %p stub!\n", iface, desc, state);
- return E_NOTIMPL;
-}
- static HRESULT STDMETHODCALLTYPE d3d11_device_CreateRasterizerState1(ID3D11Device2 *iface, const D3D11_RASTERIZER_DESC1 *desc, ID3D11RasterizerState1 **state) {
@@ -4993,7 +5015,8 @@ static void STDMETHODCALLTYPE d3d10_device_OMSetBlendState(ID3D10Device1 *iface,
blend_state_object = unsafe_impl_from_ID3D10BlendState(blend_state); d3d11_device_context_OMSetBlendState(&device->immediate_context.ID3D11DeviceContext1_iface,
blend_state_object ? &blend_state_object->ID3D11BlendState_iface : NULL, blend_factor, sample_mask);
blend_state_object ? (ID3D11BlendState *)&blend_state_object->ID3D11BlendState1_iface : NULL,
blend_factor, sample_mask);
}
static void STDMETHODCALLTYPE d3d10_device_OMSetDepthStencilState(ID3D10Device1 *iface,
@@ -5670,7 +5693,8 @@ static void STDMETHODCALLTYPE d3d10_device_OMGetBlendState(ID3D10Device1 *iface, { if (d3d11_blend_state) {
*blend_state = (ID3D10BlendState *)&impl_from_ID3D11BlendState(d3d11_blend_state)->ID3D10BlendState1_iface;
*blend_state = (ID3D10BlendState *)&impl_from_ID3D11BlendState1(
(ID3D11BlendState1 *)d3d11_blend_state)->ID3D10BlendState1_iface; ID3D10BlendState_AddRef(*blend_state); } else
@@ -6267,16 +6291,15 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateBlendState1(ID3D10Device1 *i const D3D10_BLEND_DESC1 *desc, ID3D10BlendState1 **blend_state) { struct d3d_device *device = impl_from_ID3D10Device(iface);
- struct d3d_blend_state *object;
ID3D11BlendState *object; HRESULT hr;
TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
- if (FAILED(hr = d3d_blend_state_create(device, (const D3D11_BLEND_DESC *)desc, &object)))
- if (FAILED(hr = d3d11_device_CreateBlendState(&device->ID3D11Device2_iface, (const D3D11_BLEND_DESC *)desc, &object))) return hr;
- *blend_state = &object->ID3D10BlendState1_iface;
- *blend_state = &impl_from_ID3D11BlendState1((ID3D11BlendState1 *)object)->ID3D10BlendState1_iface; return S_OK; }
@@ -6867,8 +6890,8 @@ static int d3d_sampler_state_compare(const void *key, const struct wine_rb_entry
static int d3d_blend_state_compare(const void *key, const struct wine_rb_entry *entry) {
- const D3D11_BLEND_DESC *ka = key;
- const D3D11_BLEND_DESC *kb = &WINE_RB_ENTRY_VALUE(entry, const struct d3d_blend_state, entry)->desc;
const D3D11_BLEND_DESC1 *ka = key;
const D3D11_BLEND_DESC1 *kb = &WINE_RB_ENTRY_VALUE(entry, const struct d3d_blend_state, entry)->desc;
return memcmp(ka, kb, sizeof(*ka)); }
diff --git a/dlls/d3d11/state.c b/dlls/d3d11/state.c index f67017ff1ef..e465d4113e3 100644 --- a/dlls/d3d11/state.c +++ b/dlls/d3d11/state.c @@ -21,20 +21,21 @@
WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
-/* ID3D11BlendState methods */ +/* ID3D11BlendState1 methods */
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendState1 *iface, REFIID riid, void **object) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
- if (IsEqualGUID(riid, &IID_ID3D11BlendState)
- if (IsEqualGUID(riid, &IID_ID3D11BlendState1)
|| IsEqualGUID(riid, &IID_ID3D11BlendState) || IsEqualGUID(riid, &IID_ID3D11DeviceChild) || IsEqualGUID(riid, &IID_IUnknown)) {
ID3D11BlendState_AddRef(iface);
ID3D11BlendState1_AddRef(iface); *object = iface; return S_OK; }
@@ -54,9 +55,9 @@ static HRESULT STDMETHODCALLTYPE d3d11_blend_state_QueryInterface(ID3D11BlendSta return E_NOINTERFACE; }
-static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState *iface) +static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState1 *iface) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface); ULONG refcount = InterlockedIncrement(&state->refcount);
TRACE("%p increasing refcount to %lu.\n", state, refcount);
@@ -70,9 +71,9 @@ static ULONG STDMETHODCALLTYPE d3d11_blend_state_AddRef(ID3D11BlendState *iface) return refcount; }
-static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState *iface) +static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState1 *iface) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface); ULONG refcount = InterlockedDecrement(&state->refcount);
TRACE("%p decreasing refcount to %lu.\n", state, refcount);
@@ -87,10 +88,10 @@ static ULONG STDMETHODCALLTYPE d3d11_blend_state_Release(ID3D11BlendState *iface return refcount; }
-static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState *iface, +static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState1 *iface, ID3D11Device **device) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, device %p.\n", iface, device);
@@ -98,46 +99,69 @@ static void STDMETHODCALLTYPE d3d11_blend_state_GetDevice(ID3D11BlendState *ifac ID3D11Device_AddRef(*device); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_GetPrivateData(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_GetPrivateData(ID3D11BlendState1 *iface, REFGUID guid, UINT *data_size, void *data) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
return d3d_get_private_data(&state->private_store, guid, data_size, data); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateData(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateData(ID3D11BlendState1 *iface, REFGUID guid, UINT data_size, const void *data) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
return d3d_set_private_data(&state->private_store, guid, data_size, data); }
-static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateDataInterface(ID3D11BlendState *iface, +static HRESULT STDMETHODCALLTYPE d3d11_blend_state_SetPrivateDataInterface(ID3D11BlendState1 *iface, REFGUID guid, const IUnknown *data) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
return d3d_set_private_data_interface(&state->private_store, guid, data); }
-static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc(ID3D11BlendState *iface, D3D11_BLEND_DESC *desc) +static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc(ID3D11BlendState1 *iface, D3D11_BLEND_DESC *desc) {
- struct d3d_blend_state *state = impl_from_ID3D11BlendState(iface);
- struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
- const D3D11_BLEND_DESC1 *d3d11_desc = &state->desc;
- unsigned int i;
- TRACE("iface %p, desc %p.\n", iface, desc);
- desc->AlphaToCoverageEnable = d3d11_desc->AlphaToCoverageEnable;
- desc->IndependentBlendEnable = d3d11_desc->IndependentBlendEnable;
- for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i)
- {
desc->RenderTarget[i].BlendEnable = d3d11_desc->RenderTarget[i].BlendEnable;
desc->RenderTarget[i].SrcBlend = d3d11_desc->RenderTarget[i].SrcBlend;
desc->RenderTarget[i].DestBlend = d3d11_desc->RenderTarget[i].DestBlend;
desc->RenderTarget[i].BlendOp = d3d11_desc->RenderTarget[i].BlendOp;
desc->RenderTarget[i].SrcBlendAlpha = d3d11_desc->RenderTarget[i].SrcBlendAlpha;
desc->RenderTarget[i].DestBlendAlpha = d3d11_desc->RenderTarget[i].DestBlendAlpha;
desc->RenderTarget[i].BlendOpAlpha = d3d11_desc->RenderTarget[i].BlendOpAlpha;
desc->RenderTarget[i].RenderTargetWriteMask = d3d11_desc->RenderTarget[i].RenderTargetWriteMask;
- }
+}
+static void STDMETHODCALLTYPE d3d11_blend_state_GetDesc1(ID3D11BlendState1 *iface, D3D11_BLEND_DESC1 *desc) +{
struct d3d_blend_state *state = impl_from_ID3D11BlendState1(iface);
TRACE("iface %p, desc %p.\n", iface, desc);
*desc = state->desc; }
-static const struct ID3D11BlendStateVtbl d3d11_blend_state_vtbl = +static const struct ID3D11BlendState1Vtbl d3d11_blend_state_vtbl = { /* IUnknown methods */ d3d11_blend_state_QueryInterface, @@ -150,6 +174,8 @@ static const struct ID3D11BlendStateVtbl d3d11_blend_state_vtbl = d3d11_blend_state_SetPrivateDataInterface, /* ID3D11BlendState methods */ d3d11_blend_state_GetDesc,
/* ID3D11BlendState1 methods */
d3d11_blend_state_GetDesc1, };
/* ID3D10BlendState methods */
@@ -168,7 +194,7 @@ static HRESULT STDMETHODCALLTYPE d3d10_blend_state_QueryInterface(ID3D10BlendSta
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
- return d3d11_blend_state_QueryInterface(&state->ID3D11BlendState_iface, riid, object);
return d3d11_blend_state_QueryInterface(&state->ID3D11BlendState1_iface, riid, object); }
static ULONG STDMETHODCALLTYPE d3d10_blend_state_AddRef(ID3D10BlendState1 *iface)
@@ -177,7 +203,7 @@ static ULONG STDMETHODCALLTYPE d3d10_blend_state_AddRef(ID3D10BlendState1 *iface
TRACE("iface %p.\n", iface);
- return d3d11_blend_state_AddRef(&state->ID3D11BlendState_iface);
return d3d11_blend_state_AddRef(&state->ID3D11BlendState1_iface); }
static ULONG STDMETHODCALLTYPE d3d10_blend_state_Release(ID3D10BlendState1 *iface)
@@ -186,7 +212,7 @@ static ULONG STDMETHODCALLTYPE d3d10_blend_state_Release(ID3D10BlendState1 *ifac
TRACE("iface %p.\n", iface);
- return d3d11_blend_state_Release(&state->ID3D11BlendState_iface);
return d3d11_blend_state_Release(&state->ID3D11BlendState1_iface); }
/* ID3D10DeviceChild methods */
@@ -247,7 +273,7 @@ static D3D10_BLEND_OP d3d10_blend_op_from_d3d11(D3D11_BLEND_OP op) static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc(ID3D10BlendState1 *iface, D3D10_BLEND_DESC *desc) { struct d3d_blend_state *state = impl_from_ID3D10BlendState(iface);
- const D3D11_BLEND_DESC *d3d11_desc = &state->desc;
const D3D11_BLEND_DESC1 *d3d11_desc = &state->desc; unsigned int i;
TRACE("iface %p, desc %p.\n", iface, desc);
@@ -272,7 +298,7 @@ static void STDMETHODCALLTYPE d3d10_blend_state_GetDesc1(ID3D10BlendState1 *ifac
TRACE("iface %p, desc %p.\n", iface, desc);
- memcpy(desc, &state->desc, sizeof(*desc));
d3d11_blend_state_GetDesc(&state->ID3D11BlendState1_iface, (D3D11_BLEND_DESC *)desc); }
static const struct ID3D10BlendState1Vtbl d3d10_blend_state_vtbl =
@@ -317,21 +343,21 @@ static enum wined3d_blend_op wined3d_blend_op_from_d3d11(D3D11_BLEND_OP op) return (enum wined3d_blend_op)op; }
-HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC *desc, +HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC1 *desc, struct d3d_blend_state **state) { struct wined3d_blend_state_desc wined3d_desc; struct d3d_blend_state *object; struct wine_rb_entry *entry;
- D3D11_BLEND_DESC tmp_desc;
D3D11_BLEND_DESC1 tmp_desc; unsigned int i, j; HRESULT hr;
if (!desc) return E_INVALIDARG;
- /* D3D11_RENDER_TARGET_BLEND_DESC has a hole, which is a problem because we use
* D3D11_BLEND_DESC as a key in the rbtree. */
- /* D3D11_RENDER_TARGET_BLEND_DESC1 has a hole, which is a problem because we use
* D3D11_BLEND_DESC1 as a key in the rbtree. */ memset(&tmp_desc, 0, sizeof(tmp_desc)); tmp_desc.AlphaToCoverageEnable = desc->AlphaToCoverageEnable; tmp_desc.IndependentBlendEnable = desc->IndependentBlendEnable;
@@ -366,7 +392,7 @@ HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC object = WINE_RB_ENTRY_VALUE(entry, struct d3d_blend_state, entry);
TRACE("Returning existing blend state %p.\n", object);
ID3D11BlendState_AddRef(&object->ID3D11BlendState_iface);
ID3D11BlendState1_AddRef(&object->ID3D11BlendState1_iface); *state = object; wined3d_mutex_unlock();
@@ -379,7 +405,7 @@ HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC return E_OUTOFMEMORY; }
- object->ID3D11BlendState_iface.lpVtbl = &d3d11_blend_state_vtbl;
- object->ID3D11BlendState1_iface.lpVtbl = &d3d11_blend_state_vtbl; object->ID3D10BlendState1_iface.lpVtbl = &d3d10_blend_state_vtbl; object->refcount = 1; wined3d_private_store_init(&object->private_store);
@@ -434,9 +460,9 @@ struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *ifac { if (!iface) return NULL;
- assert(iface->lpVtbl == &d3d11_blend_state_vtbl);
- assert(iface->lpVtbl == (ID3D11BlendStateVtbl *)&d3d11_blend_state_vtbl);
- return impl_from_ID3D11BlendState(iface);
return impl_from_ID3D11BlendState1((ID3D11BlendState1 *)iface); }
struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface)
On Sat, May 14, 2022 at 2:35 AM James McDonnell topgamer7@gmail.com wrote:
On 2022-05-13 11:46, Chip Davis wrote:
diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c index ecf45e9ce33..263613911f8 100644 --- a/dlls/d3d11/device.c +++ b/dlls/d3d11/device.c @@ -2204,7 +2204,7 @@ static void STDMETHODCALLTYPE d3d11_device_context_OMGetBlendState(ID3D11DeviceC if (wined3d_state) { blend_state_impl = wined3d_blend_state_get_parent(wined3d_state);
ID3D11BlendState_AddRef(*blend_state = &blend_state_impl->ID3D11BlendState_iface);
ID3D11BlendState_AddRef(*blend_state = (ID3D11BlendState *)&blend_state_impl->ID3D11BlendState1_iface); } else *blend_state = NULL;
@@ -3632,23 +3632,53 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CreateClassLinkage(ID3D11Device2 * return S_OK; }
-static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface,
const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state)
+static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState1(ID3D11Device2 *iface,
{ struct d3d_device *device = impl_from_ID3D11Device2(iface); struct d3d_blend_state *object; HRESULT hr;const D3D11_BLEND_DESC1 *desc, ID3D11BlendState1 **state)
- TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
TRACE("iface %p, desc %p, state %p.\n", iface, desc, state);
if (FAILED(hr = d3d_blend_state_create(device, desc, &object))) return hr;
- *blend_state = &object->ID3D11BlendState_iface;
*state = &object->ID3D11BlendState1_iface;
return S_OK; }
+static HRESULT STDMETHODCALLTYPE d3d11_device_CreateBlendState(ID3D11Device2 *iface,
const D3D11_BLEND_DESC *desc, ID3D11BlendState **blend_state)
+{
- D3D11_BLEND_DESC1 d3d11_1_desc;
- unsigned int i;
- TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
- if (!desc)
return E_INVALIDARG;
- d3d11_1_desc.AlphaToCoverageEnable = desc->AlphaToCoverageEnable;
- d3d11_1_desc.IndependentBlendEnable = desc->IndependentBlendEnable;
- for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i)
- {
d3d11_1_desc.RenderTarget[i].BlendEnable = desc->RenderTarget[i].BlendEnable;
d3d11_1_desc.RenderTarget[i].LogicOpEnable = FALSE;
d3d11_1_desc.RenderTarget[i].SrcBlend = desc->RenderTarget[i].SrcBlend;
d3d11_1_desc.RenderTarget[i].DestBlend = desc->RenderTarget[i].DestBlend;
d3d11_1_desc.RenderTarget[i].BlendOp = desc->RenderTarget[i].BlendOp;
d3d11_1_desc.RenderTarget[i].SrcBlendAlpha = desc->RenderTarget[i].SrcBlendAlpha;
d3d11_1_desc.RenderTarget[i].DestBlendAlpha = desc->RenderTarget[i].DestBlendAlpha;
d3d11_1_desc.RenderTarget[i].BlendOpAlpha = desc->RenderTarget[i].BlendOpAlpha;
d3d11_1_desc.RenderTarget[i].LogicOp = D3D11_LOGIC_OP_COPY;
d3d11_1_desc.RenderTarget[i].RenderTargetWriteMask = desc->RenderTarget[i].RenderTargetWriteMask;
- }
Shouldn't this include a FIXME to warn that LogicOp is hard coded?
No, because ID3D11Device1::CreateBlendState1() is implemented in this patch; this is the old method, ID3D11Device::CreateBlendState(), which doesn't support specifying the logic op.
Hi,
While running your changed tests, 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=114669
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00.
=== w7u_adm (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w7u_el (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w8 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w8adm (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w864 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00.
=== w1064v1507 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 180, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 300, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 420, got 0x0066ff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00eeff00. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w1064v1809 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w1064 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w1064_tsign (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w10pro64 (32 bit report) ===
ddraw: ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x001100ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00220000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0055ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x0077ffff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 240, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 400, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 560, 60, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 180, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 300, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x00880000 at 80, 420, got 0x00000000. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x009900ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x003300ff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ffffff. ddraw4.c:19191: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ffffff.
=== w7u_2qxl (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w7u_adm (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w7u_el (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w8 (32 bit report) ===
ddraw: ddraw7.c:18871: Test failed: Got unexpected color 0x00000040. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w8adm (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w864 (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w1064v1507 (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w1064v1809 (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w1064 (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w1064_tsign (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== w10pro64 (32 bit report) ===
ddraw: ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00000000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x001100ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00220000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x003300ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0044ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0055ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0066ff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x0077ffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00880000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x009900ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00aa0000 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00bb00ff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ddffff at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00eeff00 at 560, 420, got 0x00ccff00. ddraw7.c:19397: Test failed: Failed to set raster op, hr 0x80070057. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 60, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 180, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 300, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 80, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 240, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 400, 420, got 0x00ccff00. ddraw7.c:19417: Test failed: Expected color 0x00ffffff at 560, 420, got 0x00ccff00.
=== debian11 (32 bit Chinese:China report) ===
Report validation errors: ddraw1: Timeout
=== debian11 (build log) ===
WineRunWineTest.pl:error: The task timed out
=== debian11 (64 bit WoW report) ===
Report validation errors: ddraw7: Timeout
=== debian11 (build log) ===
WineRunWineTest.pl:error: The task timed out
Am 13.05.2022 um 21:46 schrieb Chip Davis cdavis5x@gmail.com:
I don't expect d3d7 to work. But I don't have real hardware that exposes D3DPRASTERCAPS_ROP2 to verify that.
Do you have an application that uses that? I remember writing a test for ROP in blits and found that only BLACK and WHITE did worked. I'd be very surprised if there had ever been a hardware that supported that for 3D draws.