Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 21 ++++++++++++++++----- dlls/d3d9/stateblock.c | 6 ++---- 2 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 1ff178881c..cfa1d14cce 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2516,6 +2516,7 @@ static HRESULT WINAPI d3d9_device_GetTexture(IDirect3DDevice9Ex *iface, DWORD st { struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface); struct wined3d_texture *wined3d_texture = NULL; + const struct wined3d_stateblock_state *state; struct d3d9_texture *texture_impl;
TRACE("iface %p, stage %u, texture %p.\n", iface, stage, texture); @@ -2523,8 +2524,19 @@ static HRESULT WINAPI d3d9_device_GetTexture(IDirect3DDevice9Ex *iface, DWORD st if (!texture) return D3DERR_INVALIDCALL;
+ if (stage >= WINED3DVERTEXTEXTURESAMPLER0 && stage <= WINED3DVERTEXTEXTURESAMPLER3) + stage -= (WINED3DVERTEXTEXTURESAMPLER0 - WINED3D_MAX_FRAGMENT_SAMPLERS); + + if (stage >= ARRAY_SIZE(state->textures)) + { + WARN("Ignoring invalid stage %u.\n", stage); + *texture = NULL; + return D3D_OK; + } + wined3d_mutex_lock(); - if ((wined3d_texture = wined3d_device_get_texture(device->wined3d_device, stage))) + state = wined3d_stateblock_get_state(device->state); + if ((wined3d_texture = state->textures[stage])) { texture_impl = wined3d_texture_get_parent(wined3d_texture); *texture = &texture_impl->IDirect3DBaseTexture9_iface; @@ -2815,16 +2827,15 @@ static float WINAPI d3d9_device_GetNPatchMode(IDirect3DDevice9Ex *iface) /* wined3d critical section must be taken by the caller. */ static void d3d9_generate_auto_mipmaps(struct d3d9_device *device) { + const struct wined3d_stateblock_state *state = wined3d_stateblock_get_state(device->state); struct wined3d_texture *texture; - unsigned int i, stage, map; + unsigned int i, map;
map = device->auto_mipmaps; while (map) { i = wined3d_bit_scan(&map); - - stage = i >= 16 ? i - 16 + D3DVERTEXTEXTURESAMPLER0 : i; - if ((texture = wined3d_device_get_texture(device->wined3d_device, stage))) + if ((texture = state->textures[i])) d3d9_texture_gen_auto_mipmap(wined3d_texture_get_parent(texture)); } } diff --git a/dlls/d3d9/stateblock.c b/dlls/d3d9/stateblock.c index dfb8d8d755..a65fa1cd8d 100644 --- a/dlls/d3d9/stateblock.c +++ b/dlls/d3d9/stateblock.c @@ -116,9 +116,9 @@ static HRESULT WINAPI d3d9_stateblock_Apply(IDirect3DStateBlock9 *iface) { struct d3d9_stateblock *stateblock = impl_from_IDirect3DStateBlock9(iface); struct wined3d_texture *wined3d_texture; - unsigned int i, offset, stride, stage; struct wined3d_buffer *wined3d_buffer; struct d3d9_vertexbuffer *buffer; + unsigned int i, offset, stride; enum wined3d_format_id format; struct d3d9_texture *texture; struct d3d9_device *device; @@ -151,9 +151,7 @@ static HRESULT WINAPI d3d9_stateblock_Apply(IDirect3DStateBlock9 *iface) device->auto_mipmaps = 0; for (i = 0; i < D3D9_MAX_TEXTURE_UNITS; ++i) { - stage = i >= 16 ? i - 16 + D3DVERTEXTEXTURESAMPLER0 : i; - - if ((wined3d_texture = wined3d_device_get_texture(device->wined3d_device, stage)) + if ((wined3d_texture = wined3d_stateblock_get_state(device->state)->textures[i]) && (texture = wined3d_texture_get_parent(wined3d_texture)) && texture->usage & D3DUSAGE_AUTOGENMIPMAP) device->auto_mipmaps |= 1u << i;
Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index cfa1d14cce..7a9e9400bb 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2568,9 +2568,6 @@ static HRESULT WINAPI d3d9_device_SetTexture(IDirect3DDevice9Ex *iface, DWORD st unsigned int i = stage < 16 || (stage >= D3DVERTEXTEXTURESAMPLER0 && stage <= D3DVERTEXTEXTURESAMPLER3) ? stage < 16 ? stage : stage - D3DVERTEXTEXTURESAMPLER0 + 16 : ~0u;
- wined3d_device_set_texture(device->wined3d_device, stage, - texture_impl ? texture_impl->wined3d_texture : NULL); - if (i < D3D9_MAX_TEXTURE_UNITS) { if (texture_impl && texture_impl->usage & D3DUSAGE_AUTOGENMIPMAP)
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=65038
Your paranoid android.
=== debian10 (32 bit report) ===
=== debian10 (32 bit Chinese:China report) ===
=== debian10 (32 bit WoW report) ===
=== debian10 (64 bit WoW report) ===
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=65041
Your paranoid android.
=== debian10 (32 bit report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E1420, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E6E28, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007EC830, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F2238, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F7C40, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FD648, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00803050, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808A58, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808A58. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (32 bit Chinese:China report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007FA450, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007FFAB0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00805110, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 0080A770, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 0080FDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00815430, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 0081AA90, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 0021E0F8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 0021E0F8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (32 bit WoW report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E19C0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E73C8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007ECDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F27D8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F81E0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FDBE8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 008035F0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808FF8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808FF8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (64 bit WoW report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E19C0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E73C8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007ECDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F27D8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F81E0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FDBE8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 008035F0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808FF8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808FF8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
Signed-off-by: Henri Verbeet hverbeet@codeweavers.com
Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 7a9e9400bb..4f1c602e1f 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2661,14 +2661,26 @@ static HRESULT WINAPI d3d9_device_SetTextureStageState(IDirect3DDevice9Ex *iface }
static HRESULT WINAPI d3d9_device_GetSamplerState(IDirect3DDevice9Ex *iface, - DWORD sampler, D3DSAMPLERSTATETYPE state, DWORD *value) + DWORD sampler_idx, D3DSAMPLERSTATETYPE state, DWORD *value) { struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface); + const struct wined3d_stateblock_state *device_state; + + TRACE("iface %p, sampler_idx %u, state %#x, value %p.\n", iface, sampler_idx, state, value);
- TRACE("iface %p, sampler %u, state %#x, value %p.\n", iface, sampler, state, value); + if (sampler_idx >= WINED3DVERTEXTEXTURESAMPLER0 && sampler_idx <= WINED3DVERTEXTEXTURESAMPLER3) + sampler_idx -= (WINED3DVERTEXTEXTURESAMPLER0 - WINED3D_MAX_FRAGMENT_SAMPLERS); + + if (sampler_idx >= ARRAY_SIZE(device_state->sampler_states)) + { + WARN("Invalid sampler %u.\n", sampler_idx); + *value = 0; + return D3D_OK; + }
wined3d_mutex_lock(); - *value = wined3d_device_get_sampler_state(device->wined3d_device, sampler, state); + device_state = wined3d_stateblock_get_state(device->state); + *value = device_state->sampler_states[sampler_idx][state]; wined3d_mutex_unlock();
return D3D_OK;
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=65039
Your paranoid android.
=== debian10 (32 bit report) ===
=== debian10 (32 bit Chinese:China report) ===
=== debian10 (32 bit WoW report) ===
=== debian10 (64 bit WoW report) ===
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=65042
Your paranoid android.
=== debian10 (32 bit report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E1420, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E6E28, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007EC830, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F2238, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F7C40, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FD648, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00803050, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808A58, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808A58. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E1420. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E6E28. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007EC830. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F2238. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F7C40. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FD648. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 00803050. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808A58. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (32 bit Chinese:China report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007FA450, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007FFAB0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00805110, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 0080A770, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 0080FDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00815430, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 0081AA90, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 0021E0F8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 0021E0F8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007FA450. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007FFAB0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 00805110. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 0080A770. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 0080FDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 00815430. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 0081AA90. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 0021E0F8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (32 bit WoW report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E19C0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E73C8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007ECDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F27D8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F81E0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FDBE8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 008035F0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808FF8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808FF8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
=== debian10 (64 bit WoW report) ===
d3d9: stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 007E19C0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 007E73C8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 007ECDD0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 007F27D8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 007F81E0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 007FDBE8, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 008035F0, received 00000000. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00808FF8, received 00000000. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 0, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 0, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 2, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 2, texture stage 7, expected texture 00000000, received 00808FF8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 0, expected texture 00000000, received 007E19C0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 1, expected texture 00000000, received 007E73C8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 2, expected texture 00000000, received 007ECDD0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 3, expected texture 00000000, received 007F27D8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 4, expected texture 00000000, received 007F81E0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 5, expected texture 00000000, received 007FDBE8. stateblock.c:1827: Test failed: Chain stage 1, texture stage 6, expected texture 00000000, received 008035F0. stateblock.c:1827: Test failed: Chain stage 1, texture stage 7, expected texture 00000000, received 00808FF8. visual.c:6512: Test failed: pixel 200/200 has color 00000000, expected 0x00ffffff visual.c:6514: Test failed: pixel 280/200 has color 00000000, expected 0x000000ff visual.c:6518: Test failed: pixel 440/200 has color 00000000, expected 0x00ffffff visual.c:6520: Test failed: pixel 200/270 has color 00000000, expected 0x00ffffff visual.c:6522: Test failed: pixel 280/270 has color 00000000, expected 0x00ff0000 visual.c:6524: Test failed: pixel 360/270 has color 00000000, expected 0x0000ff00 visual.c:6526: Test failed: pixel 440/270 has color 00000000, expected 0x00ffffff visual.c:6734: Test failed: Unexpected color 0x00000000. visual.c:6736: Test failed: Unexpected color 0x00000000. visual.c:6738: Test failed: Unexpected color 0x00000000. visual.c:6742: Test failed: Unexpected color 0x00000000. visual.c:6744: Test failed: Unexpected color 0x00000000. visual.c:6746: Test failed: Unexpected color 0x00000000.
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=65044
Your paranoid android.
=== debian10 (32 bit report) ===
=== debian10 (32 bit Chinese:China report) ===
=== debian10 (32 bit WoW report) ===
=== debian10 (64 bit WoW report) ===
Signed-off-by: Henri Verbeet hverbeet@codeweavers.com
Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 4f1c602e1f..e2044b98ff 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2695,8 +2695,6 @@ static HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_device_SetSamplerState(IDirect3DDev
wined3d_mutex_lock(); wined3d_stateblock_set_sampler_state(device->update_state, sampler, state, value); - if (!device->recording) - wined3d_device_set_sampler_state(device->wined3d_device, sampler, state, value); wined3d_mutex_unlock();
return D3D_OK;
Signed-off-by: Henri Verbeet hverbeet@codeweavers.com
Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index e2044b98ff..55b891426c 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2625,14 +2625,14 @@ static HRESULT WINAPI d3d9_device_GetTextureStageState(IDirect3DDevice9Ex *iface
TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, stage, state, value);
- if (state >= ARRAY_SIZE(tss_lookup)) + if (state >= ARRAY_SIZE(tss_lookup) || tss_lookup[state] == WINED3D_TSS_INVALID) { WARN("Invalid state %#x passed.\n", state); return D3D_OK; }
wined3d_mutex_lock(); - *value = wined3d_device_get_texture_stage_state(device->wined3d_device, stage, tss_lookup[state]); + *value = wined3d_stateblock_get_state(device->state)->texture_states[stage][tss_lookup[state]]; wined3d_mutex_unlock();
return D3D_OK;
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=65047
Your paranoid android.
=== debian10 (32 bit report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (32 bit Chinese:China report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (32 bit WoW report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (64 bit WoW report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
Signed-off-by: Henri Verbeet hverbeet@codeweavers.com
Signed-off-by: Zebediah Figura z.figura12@gmail.com --- dlls/d3d9/device.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 55b891426c..5bf0d6484c 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2653,8 +2653,6 @@ static HRESULT WINAPI d3d9_device_SetTextureStageState(IDirect3DDevice9Ex *iface
wined3d_mutex_lock(); wined3d_stateblock_set_texture_stage_state(device->update_state, stage, tss_lookup[state], value); - if (!device->recording) - wined3d_device_set_texture_stage_state(device->wined3d_device, stage, tss_lookup[state], value); wined3d_mutex_unlock();
return D3D_OK;
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=65048
Your paranoid android.
=== debian10 (32 bit report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (32 bit Chinese:China report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (32 bit WoW report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
=== debian10 (64 bit WoW report) ===
quartz: videorenderer.c:1211: Test failed: Got hr 0x80040207. vmr7.c:1416: Test failed: Got hr 0x80040207. vmr9.c:1410: Test failed: Got hr 0x80040207.
Signed-off-by: Henri Verbeet hverbeet@codeweavers.com
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=65037
Your paranoid android.
=== debian10 (32 bit report) ===
d3d9: device: Timeout stateblock: Timeout visual: Timeout
=== debian10 (build log) ===
0009:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded. 0009:err:winediag:nodrv_CreateWindow The explorer process failed to start. Error: Unable to create a window, the display driver is not working. Task: WineTest did not produce the win32_zh_CN report
=== debian10 (32 bit WoW report) ===
=== debian10 (64 bit WoW report) ===