Sprite flickering in scene transition

Hi,
I faced the sprite flickering during scene transition with animation.
cocos2d-1.0.1-x-0.12.0. Platform iPad.
The following call produce flickering:

CCDirector *director = CCDirector::sharedDirector();
director->replaceScene(CCTransitionMoveInL::transitionWithDuration(duration,newScene));

Where is the problem?
Thanks.

Are you testing on the iPad 2?

iPad:
Capasity 13.8GB
Version 5.0.1 (9A405)
Model MC769C

16 GB iPad 2 Wi-Fi
Is this problem iPad specific?

Try adding:

@
// Fix Flicker on iPad
pDirector->setProjection(kCCDirectorProjection2D);
@

Not iPad specific, although it’s probably specific to the newer devices.

I had a flickering problem on iPad 2 and iPhone 4GS.

Thanks,
It works for me.

Tried:
CCDirector::sharedDirector()>setDepthTest;
Result: None.
Tried:
pDirector
>setProjection(kCCDirectorProjection2D);
Result: All in 2D. My project uses perspective, and this is lost.

Another solution?

thanks Javier Sánchez ^^