Commit bb201bb5 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d9/tests: Read from the appropriate pixels in test_constant_clamp_vs().

parent a99bf6c0
...@@ -4806,12 +4806,12 @@ static void test_constant_clamp_vs(IDirect3DDevice9 *device) ...@@ -4806,12 +4806,12 @@ static void test_constant_clamp_vs(IDirect3DDevice9 *device)
ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1), ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1),
"quad 2 has color %08x, expected 0x00bfbf80\n", color); "quad 2 has color %08x, expected 0x00bfbf80\n", color);
if(shader_20) { if(shader_20) {
color = getPixelColor(device, 160, 120); color = getPixelColor(device, 480, 120);
ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1), ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1),
"quad 3 has color %08x, expected 0x00bfbf80\n", color); "quad 3 has color %08x, expected 0x00bfbf80\n", color);
} }
if(shader_20_2) { if(shader_20_2) {
color = getPixelColor(device, 480, 120); color = getPixelColor(device, 160, 120);
ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1), ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xbf, 0xbf, 0x80), 1),
"quad 4 has color %08x, expected 0x00bfbf80\n", color); "quad 4 has color %08x, expected 0x00bfbf80\n", color);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment