Parmanoir

Core Animation culling problems

While playing around with Scott Stevenson's NanoLife, I've wondered 'How would it look in 3d' ?

Unfortunately, it looks … pretty bad.

Image:Nanolife culling problem.jpg

Once you setup a projection matrix and give your layers a z position, Core Animation handles your layers as 3D objects. The problem here is culling : deciding which layers are visible on screen. In 2D the problem is trivial : just check the x,y position of the layer and test that against the NSView boundaries. In 3D, take x,y,zPosition of layers and project them using the projection matrix. You then get a x,y position on screen to render the layer. Rendering works fine — but Core Animation uses the original x,y position of layers to cull them.

Mini workaround

We can somewhat offset the problem by selecting one layer and making it big enough to take up the whole view. But layers will stil be culled to the view boundary according to their original position. Download the sample and check 'fix culling', then drag the dots to an edge : you'll see them disappearing almost all at once.

Image:iconZip.png Nanolife Culling

Core Animation

Scott Stevenson
2008 03 14

There's actually a "sphereContainer" sublayer that holds all of the floating orbs. I'm not sure what the exact effect was that you were going for, I changed this line:

mainLayer.sublayerTransform = transform;

To this:

sphereContainer.sublayerTransform = transform;

And it looks a lot better. I think Core Animation is actually doing the right thing. The NSView's backing layer had the sublayerTransform applied, so the sphereContainer layer was floating out in space.

Patrick Geiller
2008 03 16

Answered on your blog. Thanks !


Follow me on Twitter
Planet Cocoa
Cocoa.fr

2011 02 22Distance field
2010 07 202Binding through NSApp
2010 05 122Forwarding invocations
2010 02 272Core Image black fringes
2010 02 21Quickest Way to Shell
2010 02 08Who's calling ?
2009 09 2138 ways to use Blocks in Snow Leopard
2009 08 182Bracket Mess
2009 08 124Taming JavascriptCore within and without WebView
2009 04 15Debugging with Activity Monitor
2009 03 25How Core Image Color Tracking works
2009 03 1510Custom NSThemeFrame
2009 03 10Which framework is running ?
2009 03 074CoreUI can paint pretty big
2009 02 18Localization with functions
2009 01 30Did you forget to nest alloc and init?
2009 01 16JSCocoa on the iPhone
2009 01 11Mixing WebView and JavascriptCore
2009 01 09Badge overflow
2009 01 09Find your Garbage Collection leaks with Instruments

Powered by MediaWiki