summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch b/meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch
deleted file mode 100644
index 25f4846592..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/0001-Fix-PaintingData-has-no-member-named-lightVector-on-.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From a5d4e038268ae23486fecc1966fd2e16a7f40ce8 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Wed, 25 Jul 2018 00:23:48 -0700
4Subject: [PATCH] Fix PaintingData' has no member named 'lightVector' on
5 ARM_NEON
6
7* platform/graphics/cpu/arm/filters/FELightingNEON.h:
8(WebCore::FELighting::platformApplyNeon):
9
10Upstream-Status: Submitted
11https://bugs.webkit.org/show_bug.cgi?id=187991
12
13Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
14---
15 Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18diff --git a/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h b/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h
19index 42af922..b542a4c 100644
20--- a/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h
21+++ b/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h
22@@ -144,9 +144,9 @@ inline void FELighting::platformApplyNeon(const LightingData& data, const LightS
23 neonData.flags |= FLAG_CONE_EXPONENT_IS_1;
24 } else {
25 ASSERT(m_lightSource->type() == LS_DISTANT);
26- floatArguments.lightX = paintingData.lightVector.x();
27- floatArguments.lightY = paintingData.lightVector.y();
28- floatArguments.lightZ = paintingData.lightVector.z();
29+ floatArguments.lightX = paintingData.initialLightingData.lightVector.x();
30+ floatArguments.lightY = paintingData.initialLightingData.lightVector.y();
31+ floatArguments.lightZ = paintingData.initialLightingData.lightVector.z();
32 floatArguments.padding2 = 1;
33 }
34
35--
362.10.2
37