How to use CgLayer for optimal drawing

前端 未结 2 1351
隐瞒了意图╮
隐瞒了意图╮ 2021-01-28 23:45

I have created a simple drawing project,the code works fine, but I want to cache the drawing into CGlayer, because I read that its more efficient way in drawing . I have read th

相关标签:
2条回答
  • 2021-01-29 00:21

    Not optimal to use CGLayer anymore

    http://iosptl.com/posts/cglayer-no-longer-recommended/

    0 讨论(0)
  • 2021-01-29 00:23

    The link posted by @hfossli is now dead, but here is the archived content:

    CGLayer no longer recommended

    Posted by robnapier on Jul 13, 2012 in Book Updates

    I spend a lot of time in the labs at WWDC asking questions and talking with the developers. I sat down the Core Graphics engineers this time and asked them about one of my favorite underused tools: CGLayer, which I discuss at the end of Chapter 6. CGLayer sounds like a great idea: a drawing context optimized specifically for drawing on the screen, with hardware optimization. What could go wrong?

    I started to have doubts, though, that CGLayer was always a great win. What if your layers were too large to store in GPU textures? CGLayer is advertised for use as a “stamp” that you repeatedly draw. Moving data to and from the GPU is expensive. Maybe CGLayer doesn’t make sense unless you draw it a certain number of times. The docs give no guidance on this.

    So I asked the Core Graphics team “When should I be using CGLayer?”

    “Never.”

    … ??? Never? But for stamping right?

    Never.

    So we talked some more. It appears that CGLayer was one of those things that sounded great on paper, but just doesn’t always work in practice. Sometimes it’s faster. Sometimes its slower. There’s no easy rule for when it’s going to be faster. Over time it seems they’ve quietly abandoned it without actually deprecating it. I’ve asked that the docs be updated to match Apple’s current recommendation. The CGLayer Reference hasn’t been updated since 2006.

    The recommendation I received was to use CGBitmapContext or CALayer for stamping. For the specific example given on pages 131-132, CATextLayer would probably be the best tool. Remember that you can easily clone a CALayer using initWithLayer:. (John Mueller points out below that this isn’t actually supported.)

    0 讨论(0)
提交回复
热议问题