aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/pdf/PDFFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/pdf/PDFFactory.java')
-rw-r--r--src/java/org/apache/fop/pdf/PDFFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFFactory.java b/src/java/org/apache/fop/pdf/PDFFactory.java
index bacb3251c..5ef2a72a1 100644
--- a/src/java/org/apache/fop/pdf/PDFFactory.java
+++ b/src/java/org/apache/fop/pdf/PDFFactory.java
@@ -688,7 +688,7 @@ public class PDFFactory {
public PDFPattern makeGradient(PDFResourceContext res, boolean radial,
PDFColorSpace theColorspace,
List theColors, List theBounds,
- List theCoords) {
+ List theCoords, List theMatrix) {
PDFShading myShad;
PDFFunction myfunky;
PDFFunction myfunc;
@@ -770,7 +770,7 @@ public class PDFFactory {
}
- myPattern = makePattern(res, 2, myShad, null, null, null);
+ myPattern = makePattern(res, 2, myShad, null, null, theMatrix);
return (myPattern);
}