Changeset 87723 in webkit


Ignore:
Timestamp:
May 31, 2011 5:43:11 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-31 Oleg Romashin <oleg.romashin@nokia.com>

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):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r87721 r87723  
     12011-05-31  Oleg Romashin  <oleg.romashin@nokia.com>
     2
     3        Reviewed by Benjamin Poulain.
     4
     5        Fix compilation with debug enabled, m_lightSource.type is not valid anymore
     6        https://bugs.webkit.org/show_bug.cgi?id=61719
     7
     8        * platform/graphics/filters/arm/FELightingNEON.h:
     9        (WebCore::FELighting::platformApplyNeon):
     10
    1112011-05-31  Oliver Varga  <Varga.Oliver@stud.u-szeged.hu>
    212
  • trunk/Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h

    r86759 r87723  
    146146            neonData.flags |= FLAG_CONE_EXPONENT_IS_1;
    147147    } else {
    148         ASSERT(m_lightSource.type == LS_DISTANT);
     148        ASSERT(m_lightSource->type() == LS_DISTANT);
    149149        floatArguments.lightX = paintingData.lightVector.x();
    150150        floatArguments.lightY = paintingData.lightVector.y();
Note: See TracChangeset for help on using the changeset viewer.