The black is a main content layer (actually hosted layer in NSView). I set position, anchor point, bounds, and all works as expected if I use just a CALayer with a background:
self.rightFromLayer.backgroundColor = [[NSColor redColor] CGColor];

Bu every time I try to assign CGImageRef content to CALayer the layer showed with offset. The all geometry for point, bounds, anchor point is the same. The image has the same size as bounds :
[self.rightFromLayer setContents:(id)[self.rightFromImage CGImage]]

What's interesting, if I make offset to normalized value that I changed anchor point (I set anchor point in x axis from default 0.5 value to 0.0) and make offset to the layer x position, it showed in right place:
xCenterOfFromView += 0.5 * self.image.size.width;