Changeset 148945 in webkit


Ignore:
Timestamp:
Apr 22, 2013 11:51:11 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Assertion Failures in Coordinated Graphics after r148433
https://bugs.webkit.org/show_bug.cgi?id=114731

Patch by Noam Rosenthal <Noam Rosenthal> on 2013-04-22
Reviewed by Gyuyoung Kim.

The assert is incorrect. In some cases in coordinated graphics we may have a backing store
and drawsContent would be set to false.

No new tests.

  • platform/graphics/texmap/TextureMapperLayer.cpp:

(WebCore::TextureMapperLayer::paintSelf):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r148944 r148945  
     12013-04-22  Noam Rosenthal  <noam@webkit.org>
     2
     3        [EFL] Assertion Failures in Coordinated Graphics after r148433
     4        https://bugs.webkit.org/show_bug.cgi?id=114731
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        The assert is incorrect. In some cases in coordinated graphics we may have a backing store
     9        and drawsContent would be set to false.
     10
     11        No new tests.
     12
     13        * platform/graphics/texmap/TextureMapperLayer.cpp:
     14        (WebCore::TextureMapperLayer::paintSelf):
     15
    1162013-04-22  Suchit Agrawal  <a.suchit@samsung.com>
    217
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp

    r148748 r148945  
    139139
    140140    if (m_backingStore) {
    141         ASSERT(m_state.drawsContent && m_state.contentsVisible && !m_state.size.isEmpty());
    142141        FloatRect targetRect = m_state.shouldMapBackingStoreToContentsRect ? m_state.contentsRect : layerRect();
    143142        ASSERT(!targetRect.isEmpty());
Note: See TracChangeset for help on using the changeset viewer.