Commit 46ec9121 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dx8/tests: Make compare_vec3() static.

parent 0c2430ce
......@@ -32,7 +32,7 @@ static BOOL compare(FLOAT u, FLOAT v)
return (fabs(u-v) < admitted_error);
}
BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
static BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
{
return ( compare(u.x, v.x) && compare(u.y, v.y) && compare(u.z, v.z) );
}
......
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