Changeset 172885 in webkit
- Timestamp:
- Aug 23, 2014, 12:11:00 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r172884 r172885 1 2014-08-23 Zan Dobersek <zdobersek@igalia.com> 2 3 [TexMap] Only notify of a required flush on the first layer property change 4 https://bugs.webkit.org/show_bug.cgi?id=136104 5 6 Reviewed by Martin Robinson. 7 8 The GraphicsLayer's client should only be notified that a flush is required 9 when the first change of one of the layer's properties is initiated, instead 10 of requesting the flush on every such change. 11 12 * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp: 13 (WebCore::GraphicsLayerTextureMapper::notifyChange): 14 1 15 2014-08-22 Dan Bernstein <mitz@apple.com> 2 16 -
trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp
r172836 r172885 60 60 void GraphicsLayerTextureMapper::notifyChange(ChangeMask changeMask) 61 61 { 62 bool flushRequired = m_changeMask == NoChanges; 62 63 m_changeMask |= changeMask; 63 client().notifyFlushRequired(this); 64 65 if (flushRequired) 66 client().notifyFlushRequired(this); 64 67 } 65 68
Note:
See TracChangeset
for help on using the changeset viewer.