Home | History | Annotate | Download | only in pdf

Lines Matching refs:pattern

255     // Select Pattern color space (CS, cs) and set pattern object as current
260 content->writeText("/Pattern CS/Pattern cs/");
343 void SkPDFUtils::PopulateTilingPatternDict(SkPDFDict* pattern,
351 pattern->insertName("Type", "Pattern");
352 pattern->insertInt("PatternType", kTiling_PatternType);
353 pattern->insertInt("PaintType", kColoredTilingPattern_PaintType);
354 pattern->insertInt("TilingType", kConstantSpacing_TilingType);
355 pattern->insertObject("BBox", SkPDFUtils::RectToArray(bbox));
356 pattern->insertScalar("XStep", bbox.width());
357 pattern->insertScalar("YStep", bbox.height());
358 pattern->insertObject("Resources", std::move(resources));
360 pattern->insertObject("Matrix", SkPDFUtils::MatrixToArray(matrix));