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 rendering offscreen canvas content on a onscreen canvas. I'm using drawImage to achieve that. To create a scrolling effect, I move the rendering zone (a rectangle) on the offscreen canvas. The movement vector is (-5,0). I then use the rectangle info to render a part of the offscreen canvas on the onscreen canvas (that creates a nice scrolling effect).

The problem is : the result is a bit jerky (it's jiggling a little). I really have no idea why. All arguments of the drawImage are integers and fit with the movement vector. The fps is set to 30 and the app don't seem to lag at all (the fps sticks very very close to 30). Sizes and positions of both canvas don't change during the execution. Only the rectangle is affected.

To prevent drawing error (content disappearance), I also modify the size of the rectangle to stay within both canvas bounds. But, the resize is logical with the movement vector (increase/decrease by 5 too on each update pass).

The following is an output of all arguments passed to drawImage for 6 updates.

context.drawImage(canvas,  sX:995, sY:0, sWidth:350, sHeight:832, X:0, Y:0, Width:350,  Height:832); 
context.drawImage(canvas,  sX:990, sY:0, sWidth:355, sHeight:832, X:0, Y:0, Width:355, Height:832);
context.drawImage(canvas,  sX:985, sY:0, sWidth:360, sHeight:832, X:0, Y:0, Width:360, Height:832); 
context.drawImage(canvas,  sX:980, sY:0, sWidth:365, sHeight:832, X:0, Y:0, Width:365, Height:832); 
context.drawImage(canvas,  sX:975, sY:0, sWidth:370, sHeight:832, X:0, Y:0, Width:370, Height:832); 
context.drawImage(canvas,  sX:970, sY:0, sWidth:375, sHeight:832, X:0, Y:0, Width:375, Height:832); 

Finally, to trigger an update, I listen to requestAnimationFrame event. I'm relying to the EaselJS solution to do that (just to clarify this point, I use this lib to handle animations on another canvas/layer).

This is my configuration :

// Main loop settings
createjs.Ticker.useRAF = true;
createjs.Ticker.setFPS(30);
createjs.Ticker.addListener(this);

[...]

public tick(timeElapsed):void
{
    this._update(timeElapsed);
}

Does anyone have any thoughts about the cause of this "jiggling" behavior? I'm running out of idea... I tried to scale the movement by the elapsed time too. But the "jiggling" behavior is there too... The only thing I want is a smooth scrolling effect.

Also, just to mention, the offscreen canvas is made from small tiles. I do not load such a big image. ;)

Thank you!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.