[gs-cvs] rev 9096 - trunk/gs/contrib/opvp
giles at ghostscript.com
giles at ghostscript.com
Wed Sep 17 17:37:42 PDT 2008
Author: giles
Date: 2008-09-17 17:37:41 -0700 (Wed, 17 Sep 2008)
New Revision: 9096
Modified:
trunk/gs/contrib/opvp/gdevopvp.c
Log:
Fix: default to MITER line joins in the opvp device. Bug 689079.
The previous default was BUTT, which is a line cap, not a join. This
looks like it was a cut-and-paste error. Patch from Jon Peatfield.
Modified: trunk/gs/contrib/opvp/gdevopvp.c
===================================================================
--- trunk/gs/contrib/opvp/gdevopvp.c 2008-09-18 00:37:38 UTC (rev 9095)
+++ trunk/gs/contrib/opvp/gdevopvp.c 2008-09-18 00:37:41 UTC (rev 9096)
@@ -4500,7 +4500,7 @@
case gs_join_none:
case gs_join_triangle:
default:
- linejoin = OPVP_LINECAP_BUTT;
+ linejoin = OPVP_LINEJOIN_MITER;
break;
}
More information about the gs-cvs
mailing list