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

d3dx9/tests: Use ARRAY_SIZE in test_D3DXSHMultiply2().

parent c9400571
......@@ -3237,7 +3237,7 @@ static void test_D3DXSHMultiply2(void)
14.0f, 15.0f, 16.0f, 17.0f, 18.0f, 19.0f,
};
for (i = 0; i < 20; i++)
for (i = 0; i < ARRAY_SIZE(a); ++i)
{
a[i] = 1.0f + i / 100.0f;
b[i] = 3.0f - i / 100.0f;
......@@ -3245,7 +3245,7 @@ static void test_D3DXSHMultiply2(void)
}
D3DXSHMultiply2(c, a, b);
for (i = 0; i < 20; i++)
for (i = 0; i < ARRAY_SIZE(expected); ++i)
{
equal = compare_float(c[i], expected[i], 2);
ok(equal, "Expected[%u] = %.8e, received = %.8e.\n", i, expected[i], c[i]);
......
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