Bug 1342395: Unwrap aPattern in DrawTargetRecording::FillGlyphs when calling wrapped DrawTarget. r=jrmuizel

This commit is contained in:
Bob Owen 2017-02-28 18:02:23 +00:00
parent bdc6471097
commit 8d80080897

View File

@ -392,7 +392,7 @@ DrawTargetRecording::FillGlyphs(ScaledFont *aFont,
}
mRecorder->RecordEvent(RecordedFillGlyphs(this, aFont, aPattern, aOptions, aBuffer.mGlyphs, aBuffer.mNumGlyphs));
mFinalDT->FillGlyphs(aFont, aBuffer, aPattern, aOptions, aRenderingOptions);
mFinalDT->FillGlyphs(aFont, aBuffer, *AdjustedPattern(aPattern), aOptions, aRenderingOptions);
}
void