Title: [87723] trunk/Source/WebCore
- Revision
- 87723
- Author
- [email protected]
- Date
- 2011-05-31 05:43:11 -0700 (Tue, 31 May 2011)
Log Message
2011-05-31 Oleg Romashin <[email protected]>
Reviewed by Benjamin Poulain.
Fix compilation with debug enabled, m_lightSource.type is not valid anymore
https://bugs.webkit.org/show_bug.cgi?id=61719
* platform/graphics/filters/arm/FELightingNEON.h:
(WebCore::FELighting::platformApplyNeon):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (87722 => 87723)
--- trunk/Source/WebCore/ChangeLog 2011-05-31 11:49:22 UTC (rev 87722)
+++ trunk/Source/WebCore/ChangeLog 2011-05-31 12:43:11 UTC (rev 87723)
@@ -1,3 +1,13 @@
+2011-05-31 Oleg Romashin <[email protected]>
+
+ Reviewed by Benjamin Poulain.
+
+ Fix compilation with debug enabled, m_lightSource.type is not valid anymore
+ https://bugs.webkit.org/show_bug.cgi?id=61719
+
+ * platform/graphics/filters/arm/FELightingNEON.h:
+ (WebCore::FELighting::platformApplyNeon):
+
2011-05-31 Oliver Varga <[email protected]>
Reviewed by Nikolas Zimmermann.
Modified: trunk/Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h (87722 => 87723)
--- trunk/Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h 2011-05-31 11:49:22 UTC (rev 87722)
+++ trunk/Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h 2011-05-31 12:43:11 UTC (rev 87723)
@@ -145,7 +145,7 @@
if (spotLightSource->specularExponent() == 1)
neonData.flags |= FLAG_CONE_EXPONENT_IS_1;
} else {
- ASSERT(m_lightSource.type == LS_DISTANT);
+ ASSERT(m_lightSource->type() == LS_DISTANT);
floatArguments.lightX = paintingData.lightVector.x();
floatArguments.lightY = paintingData.lightVector.y();
floatArguments.lightZ = paintingData.lightVector.z();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes