Commit 5f03c6c8 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Wide cosmetic pens don't support dashes.

parent ab63eb5c
......@@ -1305,25 +1305,27 @@ HPEN dibdrv_SelectPen( PHYSDEV dev, HPEN hpen )
switch (pdev->pen_style)
{
case PS_SOLID:
case PS_INSIDEFRAME:
if(pdev->pen_width <= 1)
pdev->pen_lines = solid_pen_lines;
else
pdev->pen_lines = wide_pen_lines;
pdev->defer &= ~DEFER_PEN;
break;
case PS_DASH:
case PS_DOT:
case PS_DASHDOT:
case PS_DASHDOTDOT:
if(logpen.lopnStyle & PS_GEOMETRIC) break;
if(logpen.lopnWidth.x > 1) break;
if (pdev->pen_width == 1) /* wide cosmetic pens are not dashed */
{
pdev->pen_lines = dashed_pen_lines;
pdev->pen_pattern = dash_patterns[pdev->pen_style];
pdev->defer &= ~DEFER_PEN;
break;
}
/* fall through */
case PS_SOLID:
case PS_INSIDEFRAME:
if(pdev->pen_width == 1)
pdev->pen_lines = solid_pen_lines;
else
pdev->pen_lines = wide_pen_lines;
pdev->defer &= ~DEFER_PEN;
break;
case PS_NULL:
pdev->pen_lines = null_pen_lines;
......
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