Commit e0434bce authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

d3d8/tests: Reduce precision in test_filling_convention.

parent 9e6a307f
......@@ -11330,8 +11330,10 @@ static void test_filling_convention(void)
};
/* This test data follows the examples in MSDN's
* "Rasterization Rules (Direct3D 9)" article. */
static const float eps = 1.0f / 512.0f;
* "Rasterization Rules (Direct3D 9)" article.
*
* See the d3d9 test for a comment about the eps value. */
static const float eps = 1.0f / 64.0f;
const struct
{
struct vec3 position;
......
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