diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2009-10-29 04:57:34 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2009-10-29 04:57:34 +0000 |
commit | 83a7c1bdeaa8f7f11f2d5ad7ba8df1c61134ae8c (patch) | |
tree | 06afebec8271ffe9a5bac29e23ff3ca8dda65b46 /pxl/pxgstate.c | |
parent | 49f308f5634f29ae22fabb5e23b9558272d70626 (diff) |
Fix line join, or more exactly a "curve join" problem noted in bug
#690852. I don't know the exact history of gs_setcurvejoin() beyond
what is in the documentation and svn logs. Also, I am not sure which
HP printer justified it's addition to the pcl code, but it certainly
is wrong on the HP Color Laserjet 4600. The procedure and the
associated state member in the line parameters type (gxline.h)
probably should be deprecated entirely, it's no longer in use.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10242 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pxl/pxgstate.c')
-rw-r--r-- | pxl/pxgstate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pxl/pxgstate.c b/pxl/pxgstate.c index 8004792c5..4d02961a4 100644 --- a/pxl/pxgstate.c +++ b/pxl/pxgstate.c @@ -262,7 +262,6 @@ px_initgraphics(px_state_t *pxs) /* We need the H-P interpretation of zero-length lines */ /* and of using bevel joins for the segments of flattened curves. */ gs_setdotlength(pgs, 72.0 / 300, true); - gs_setcurvejoin(pgs, gs_join_bevel); } /* we always clamp coordinates hp does not seem to report limit checks in paths */ |