vote up 3 vote down star

Instruments tells that there are "misaligned images" which are animated by core animation. What does that mean?

UPDATE: I've seen that in Instruments.app > Core Animation.

flag

58% accept rate

1 Answer

vote up 3 vote down check

I'd love more information about where you're seeing this, but my suspicion is that it's referring to an image that is not pixel-aligned. Quartz allows you to draw at fractional pixels (recall that CGPoint takes CGFloats, not NSIntegers), but it's more expensive and tends to create a bit of blurriness. You can't really draw on a fractional pixel, so Quartz has to do anti-aliasing to pull it off. That takes time and certainly would hurt Core Animation performance.

Quartz will not warn you that you're drawing on fractional pixels, and it's particularly unkind to text. So it's something you need to think about any time you're doing programmatic layout.

link|flag
Yup, that's what misaligned image means. – Kriem May 29 at 21:54
Thanks for the hint. Indeed I had floating point values for frame origin coordinates. After wrapping them by an floor() the message in Insturment disappeared. But I could not recognize any performance improvement. Instruments complains about this also when an UIImageView gets rotated. So I think it's nothing too bad ;) – Thanks May 29 at 22:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.