]> git.pld-linux.org Git - packages/gtk-webkit4.git/blame - gtk-webkit4-gcc13.patch
- started update to 2.40.1; gtk-webkit5 replaced by gtk-webkit6
[packages/gtk-webkit4.git] / gtk-webkit4-gcc13.patch
CommitLineData
91a52fe3
JB
1--- webkitgtk-2.38.6/Source/ThirdParty/ANGLE/include/GLSLANG/ShaderVars.h.orig 2022-08-19 13:14:22.903425000 +0200
2+++ webkitgtk-2.38.6/Source/ThirdParty/ANGLE/include/GLSLANG/ShaderVars.h 2023-05-05 06:11:59.781732404 +0200
3@@ -12,6 +12,7 @@
4
5 #include <algorithm>
6 #include <array>
7+#include <cstdint>
8 #include <string>
9 #include <vector>
10
11--- webkitgtk-2.38.6/Source/WebCore/platform/graphics/SourceBrush.cpp.orig 2022-09-20 10:13:48.250555000 +0200
12+++ webkitgtk-2.38.6/Source/WebCore/platform/graphics/SourceBrush.cpp 2023-05-05 06:14:14.776532489 +0200
13@@ -65,12 +65,12 @@ Pattern* SourceBrush::pattern() const
14
15 void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
16 {
17- m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
18+ m_brush = Brush { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
19 }
20
21 void SourceBrush::setPattern(Ref<Pattern>&& pattern)
22 {
23- m_brush = { WTFMove(pattern) };
24+ m_brush = Brush { WTFMove(pattern) };
25 }
26
27 WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)
This page took 0.740023 seconds and 4 git commands to generate.