[webkit-dev] The future of TransformationMatrix

2011-01-14 Thread Chris Marrin
The current reworking of the TransformationMatrix class and friends (https://bugs.webkit.org/show_bug.cgi?id=48031) got me thinking about the future of this class. I've chit chatted about this with various people, but nothing serious has been done yet. As WebKit and HTML5 get more 3D

Re: [webkit-dev] The future of TransformationMatrix

2011-01-14 Thread Dirk Schulze
At first SVGMatrix and the complete SVG code itself is not using TransformationMatrix. We had bigger performance problems and the memory amount raised up by 6-10%. Thats why we decided to turn back to AffineTransform. Because of the platform dependencies of TransformationMatrix. I noted that

Re: [webkit-dev] The future of TransformationMatrix

2011-01-14 Thread Chris Marrin
On Jan 14, 2011, at 4:12 PM, Dirk Schulze wrote: At first SVGMatrix and the complete SVG code itself is not using TransformationMatrix. We had bigger performance problems and the memory amount raised up by 6-10%. Thats why we decided to turn back to AffineTransform. Because of the