[Intel-gfx] [PATCH] drm: i915: Wait for fences on new fb, not old

2016-10-21 Thread Daniel Stone
The previous code would wait for fences on the framebuffer from the old plane state to complete, rather than the new, so you would see tearing everywhere. Fix this to wait on the new state before we make it active. Signed-off-by: Daniel Stone Fixes: 94f050246b42 ("drm/i915: nonblocking commit") C

Re: [Intel-gfx] [PATCH] drm: i915: Wait for fences on new fb, not old

2016-10-27 Thread Daniel Vetter
On Fri, Oct 21, 2016 at 03:44:54PM +0100, Daniel Stone wrote: > The previous code would wait for fences on the framebuffer from the old > plane state to complete, rather than the new, so you would see tearing > everywhere. Fix this to wait on the new state before we make it active. > > Signed-off-