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

ddraw: Be less picky about float precision.

parent 50ea23ef
......@@ -898,7 +898,7 @@ static void Direct3D1Test(void)
};
static struct v_in cliptest[] = {
{25.59, 25.59, 1.0}, {-25.59, -25.59, 0.0},
{25.61, 25.61, 1.01}, {-25.60, -25.60, -0.01},
{25.61, 25.61, 1.01}, {-25.61, -25.61, -0.01},
};
static struct v_in offscreentest[] = {
{128.1, 0.0, 0.0},
......
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