#782 – A RenderTransform Has Better Performance than a LayoutTransform

When you transform a 2D element, you specify the desired transform as either a layout transform (transform calculated before layout phase) or a render transform (transform calculated before rendering the element).

A render transform has better performance than a layout transform.  This is especially apparent when you are animating a transform.  Whenever a layout transform changes, the panel containing the element that is being transformed needs to recalculate the layout of the children within the panel.  With a render transform, by contrast, the element only needs to be re-rendered.  Because of the additional layout step, a layout transform is more compute intensive than a render transform.

Because of the performance differences, you should use a render transform by default, unless you need the layout of the elements to change when the transform changes.

 

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

2 Responses to #782 – A RenderTransform Has Better Performance than a LayoutTransform

  1. Pingback: Dew Drop – March 22, 2013 (#1,512) | Alvin Ashcraft's Morning Dew

  2. Pingback: Interesting .NET Links - March 23 , 2013 | TechBlog

Leave a comment