[Webkit-unassigned] [Bug 75779] [Texmap] Move surface management from TextureMapperNode to TextureMapper

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 8 14:42:11 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=75779


Martin Robinson <mrobinson at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #121565|review?                     |review+, commit-queue-
               Flag|                            |




--- Comment #7 from Martin Robinson <mrobinson at webkit.org>  2012-01-08 14:42:11 PST ---
(From update of attachment 121565)
View in context: https://bugs.webkit.org/attachment.cgi?id=121565&action=review

Okay! Please fix the style nit before landing.

> Source/WebCore/platform/graphics/texmap/TextureMapperNode.h:136
> +        : m_parent(0), m_effectTarget(0), m_opacity(1.0), m_textureMapper(0) { }

This should probably be:
TextureMapperNode()
    : m_parent(0)
    , m_effectTarget(0)
    , m_opacity(1),
    , m_textureMapper(0)
{
}

Note the style guide suggests remove the .0 from floats when it isn't important for arithmetic.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list