Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 903554
Collapse All | Expand All

(-)a/Source/WebCore/platform/graphics/SourceBrush.cppg (-2 / +2 lines)
Lines 65-76 Link Here
65
65
66
void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
66
void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
67
{
67
{
68
    m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
68
    m_brush = Brush { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
69
}
69
}
70
70
71
void SourceBrush::setPattern(Ref<Pattern>&& pattern)
71
void SourceBrush::setPattern(Ref<Pattern>&& pattern)
72
{
72
{
73
    m_brush = { WTFMove(pattern) };
73
    m_brush = Brush { WTFMove(pattern) };
74
}
74
}
75
75
76
WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)
76
WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)

Return to bug 903554