Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | From a5d4e038268ae23486fecc1966fd2e16a7f40ce8 Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Wed, 25 Jul 2018 00:23:48 -0700 |
| 4 | Subject: [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 | |
| 10 | Upstream-Status: Submitted |
| 11 | https://bugs.webkit.org/show_bug.cgi?id=187991 |
| 12 | |
| 13 | Signed-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 | |
| 18 | diff --git a/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h b/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.h |
| 19 | index 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 | -- |
| 36 | 2.10.2 |
| 37 | |