Andrew Geissler | 028142b | 2023-05-05 11:29:21 -0500 | [diff] [blame] | 1 | From 93920b55f52ff8b883296f4845269e2ed746acb3 Mon Sep 17 00:00:00 2001 |
| 2 | From: Michael Catanzaro <mcatanzaro@redhat.com> |
| 3 | Date: Fri, 31 Mar 2023 12:24:09 -0700 |
| 4 | Subject: [PATCH] Fix build of SourceBrush.cpp |
| 5 | https://bugs.webkit.org/show_bug.cgi?id=254821 |
| 6 | |
| 7 | Unreviewed build fix. |
| 8 | |
| 9 | * Source/WebCore/platform/graphics/SourceBrush.cpp: |
| 10 | (WebCore::SourceBrush::setGradient): |
| 11 | (WebCore::SourceBrush::setPattern): |
| 12 | |
| 13 | Canonical link: https://commits.webkit.org/262434@main |
| 14 | |
| 15 | Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/93920b55f52ff8b883296f4845269e2ed746acb3] |
| 16 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 17 | --- |
| 18 | Source/WebCore/platform/graphics/SourceBrush.cpp | 4 ++-- |
| 19 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 20 | |
| 21 | --- a/Source/WebCore/platform/graphics/SourceBrush.cpp |
| 22 | +++ b/Source/WebCore/platform/graphics/SourceBrush.cpp |
| 23 | @@ -65,12 +65,12 @@ Pattern* SourceBrush::pattern() const |
| 24 | |
| 25 | void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform) |
| 26 | { |
| 27 | - m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } }; |
| 28 | + m_brush = Brush { Brush::LogicalGradient { { WTFMove(gradient) }, spaceTransform } }; |
| 29 | } |
| 30 | |
| 31 | void SourceBrush::setPattern(Ref<Pattern>&& pattern) |
| 32 | { |
| 33 | - m_brush = { WTFMove(pattern) }; |
| 34 | + m_brush = Brush { WTFMove(pattern) }; |
| 35 | } |
| 36 | |
| 37 | WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush) |