Changeset 193609 in webkit


Ignore:
Timestamp:
Dec 6, 2015 8:55:15 PM (8 years ago)
Author:
Simon Fraser
Message:

Give SVGTransformList some inline vector capacity
https://bugs.webkit.org/show_bug.cgi?id=151644

Reviewed by Andreas Kling.

Giving SVGTransformList inline capacity of one drops time under SVGTransformList::parse() by
about 1% on http://animateplus.com/demos/stress-test/

  • svg/SVGTransformList.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r193608 r193609  
     12015-12-06  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Give SVGTransformList some inline vector capacity
     4        https://bugs.webkit.org/show_bug.cgi?id=151644
     5
     6        Reviewed by Andreas Kling.
     7
     8        Giving SVGTransformList inline capacity of one drops time under SVGTransformList::parse() by
     9        about 1% on http://animateplus.com/demos/stress-test/
     10
     11        * svg/SVGTransformList.h:
     12
    1132015-12-06  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/svg/SVGTransformList.h

    r163440 r193609  
    2828namespace WebCore {
    2929
    30 class SVGTransformList : public Vector<SVGTransform> {
     30class SVGTransformList : public Vector<SVGTransform, 1> {
    3131public:
    3232    SVGTransformList() { }
Note: See TracChangeset for help on using the changeset viewer.