diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2009-07-01 03:58:18 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2009-07-01 03:58:18 +0000 |
commit | e59ca391947c153c9527e25839af30a8670f113e (patch) | |
tree | 11987891d44b4258f3055ef25ac6e6b0ec9c8d35 /pcl | |
parent | 849d84fec294736bbbe01db6c87abe0fa1b62566 (diff) |
The graphics library fill adjust was not set to (0,0) in some cases.
Improvements expected in the following files:
704iso.pcl
LS4061D2.BIN
Ls4021d1.simple.bin
Ls4071d2.bin
adobe_crash.test
adobe_crash2.test
artifex.inside.pcl
di.test
dv.test
f1150.pcl
f1150a.pcl
f1151.pcl
f1161.pcl
f1191.pcl
f1311.pcl
f1330.pcl
f1422.pcl
f1460.pcl
f1530.pcl
f1632.pcl
f1810v.pcl
fontpage.pcl
label-cr-centered.pcl
lb_control_code.test
lo.test
lo2.test
lo3.test
ls4021d1.bin
ls4031d1.bin
ls4051d1.bin
ls406wd2.bin
ls40d1d3.bin
lt231ddn.pcl
lt232ddn.pcl
lt233ddn.pcl
lt234ddn.pcl
lt235ddn.pcl
lt236ddn.pcl
lt237ddn.pcl
lt239ddn.pcl
lt23addn.pcl
pjlorientation.pcl.test.device_specific
sd.test
sf.test
si2.test
sl3.test
sm.test
sm2.test
sm4.test
sr1.test
sr_lf.test
sr_no_params.test
stickfont.test
gl2font.new
gl2font.new.unscaled
gl2font.new.unscaled2
gl2font.new2
simple3
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9828 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pcl')
-rw-r--r-- | pcl/pctop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pcl/pctop.c b/pcl/pctop.c index 5bdb07cea..a90f32f80 100644 --- a/pcl/pctop.c +++ b/pcl/pctop.c @@ -376,6 +376,7 @@ pcl_impl_set_device( gs_setsourcetransparent(pcli->pcs.pgs, false); gs_settexturetransparent(pcli->pcs.pgs, false); gs_setaccuratecurves(pcli->pcs.pgs, true); /* All H-P languages want accurate curves. */ + gs_setfilladjust(pcli->pcs.pgs, 0, 0); stage = Sgsave1; if ( (code = gs_gsave(pcli->pcs.pgs)) < 0 ) goto pisdEnd; |