Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm confused by CGLayer and CALayer. They look similar, so why are there separate implementations? What's the difference between, and compatibility of, CGLayer and CALayer?

share|improve this question

1 Answer

up vote 54 down vote accepted

They are completely different, and not compatible.

CGLayers are a "special" "high performance" thingy.

You could consider them "like bitmaps, but better."

Apple sat down and said "We're sick of people using bitmaps, let's make something better!" :)

You only work with CGLayers offscreen.

To repeat, CGLayers are entirely used offscreen.

Once they are ready, you can then blast them on to your actual screen (that is to say: blast them on to one of your views).

(However: note that: CGLayers are often used "for themselves" for image processing or calculations. In that case, they are never actually seen onscreen, and have utterly no connection to the onscreen world.)

In contrast ............. CALayers are simply the things "in" views. CALayers are just how views work.

So the two concepts are totally different.

CALayers are just the things "in" views. In contrast CGLayers are Apple's cool "offscreen, high performance, calculation machinery."

To be clear, CGLayers have utterly no connection to views, and no association with views. (Sure, you could paste a CGLayer in to a view, but then, you can paste say "type" or "an image" in to a view. Type and images are not views, and CGLayers are not views.)

The typical example is this:

you want to draw something complicated once, and then draw that thing many times on-screen. The answer to that problem is exactly CGLayers. Your "work area" would be a CGLayer; you could then blit it on to a printer, on to the screen, or whatever.

To be clear, in my opinion Apple should have chosen a different name .....

a good name would be "CGCalculationSpace."

The fact that the name contains the word "layer," makes you think of NSLayers.

To repeat: there is absolutely utterly definitely no relationship, whatsoever, in any way. CGLayers are not even vaguely related to layers.

There is no connection, at all. It is really confusing that the letters "l a y e r" are used in the name - it's a shame!

CGLayers should be called perhaps "workspaces" or "calculation paradigms" or something like that.

Hope it helps and hope you're still reading!

share|improve this answer
1  
Thanks very much! I read this completely. It was nice description, and was very helpful. Especially about CGLayer vs CALayer = 'off-screen composition' vs 'live composition' and 'not compatible'. I got an idea with your description; CALayer is an abstracted, OO model of CGLayer.(scene graph?) Anyway, thanks again! – Eonil Jan 5 '11 at 0:57
I re-read your answer, and I realized I had a misunderstanding. CGLayer is nothing related to CALayer. CGLayer is part of drawing facility, and CALayer is part of compositor. – Eonil Sep 13 '12 at 3:25
OMG, this is an amazing answer. Thank you so much for taking the time to distinguish the two so nicely! It resolved a couple of doubts of mine. ++points for "hope you're still reading"! :D – codeBearer Nov 30 '12 at 19:56
nothing makes me happier than helping, cheers – Joe Blow Dec 1 '12 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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