Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
628 views
in Technique[技术] by (71.8m points)

performance - Drawing image with CoreGraphics on Retina iPad is slow

In my iPad app, I am rendering to an offscreen bitmap, and then drawing the bitmap to the screen. (This is because I want to re-use existing bitmap rendering code.) On the iPad 2, this works like a charm, but on the new iPad with Retina display, drawing the bitmap is really slow, even though its resolution is still the same.

To draw the bitmap, we use the regular Quartz 2D functions: CGImageCreate with a data provider created by CGDataProviderCreateWithData, 32-bit RGBA format with kCGImageAlphaNoneSkipLast. In the UIView that displays the bitmap, in drawRect:, we use CGContextDrawImage to draw it to the context returned by UIGraphicsGetCurrentContext.

Note that I'm not even trying to draw at double resolution: for now I'm fine with the same resolution as I was using on the iPad 2. It looks like CoreGraphics is internally doubling the pixels, and then sending that to the GPU, even though the CGImage that I'm making should be fine for passing to the GPU directly. Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It looks like CoreGraphics is internally doubling the pixels, and then sending that to the GPU,

Pretty much. More accurately (in spirit at least):

  1. UIKit makes a CGBitmapContext the size of your view's bounds, in device pixels
  2. It makes that context the current context
  3. You draw your CGImage into that context
  4. ... so CG has to rescale the source image, and touch all of the destination pixels
  5. After you're done drawing, UIKit makes a CGImage from the bitmap context
  6. and assigns it to the view's layer's contents.

the CGImage that I'm making should be fine for passing to the GPU directly.

If you want that to happen, you need to tell the system to do that, by cutting out some of the steps above.

(There is no link between UIKit, CoreAnimation, and CoreGraphics that provides a "fast path" like you are expecting.)

The easiest way would be to make a UIImageView, and set its image to a UIImage wrapping your CGImageRef.

Or, set your view.layer.contents to your CGImageRef. (And make sure to not override -drawRect:, not call -setNeedsDisplay, and make sure contentMode is not UIViewContentModeRedraw. Easier to just use UIImageView.)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...