Re: [Mesa-dev] [PATCH] mesa: Fix FB blitting in case of zero size src or dst rect

2013-03-08 Thread Anuj Phogat
On Fri, Mar 8, 2013 at 8:02 AM, Paul Berry wrote: > On 7 March 2013 14:15, Anuj Phogat wrote: >> >> Framebuffer blitting operation should be skipped if any of the >> dimensions (width/height) of src/dst rect are zero. >> >> Fixes: fbblit(negative.nullblit.zeroSize) in Intel oglconform >> https://

Re: [Mesa-dev] [PATCH] mesa: Fix FB blitting in case of zero size src or dst rect

2013-03-08 Thread Paul Berry
On 7 March 2013 14:15, Anuj Phogat wrote: > Framebuffer blitting operation should be skipped if any of the > dimensions (width/height) of src/dst rect are zero. > > Fixes: fbblit(negative.nullblit.zeroSize) in Intel oglconform > https://bugs.freedesktop.org/show_bug.cgi?id=59495 > > Note: Candida

[Mesa-dev] [PATCH] mesa: Fix FB blitting in case of zero size src or dst rect

2013-03-07 Thread Anuj Phogat
Framebuffer blitting operation should be skipped if any of the dimensions (width/height) of src/dst rect are zero. Fixes: fbblit(negative.nullblit.zeroSize) in Intel oglconform https://bugs.freedesktop.org/show_bug.cgi?id=59495 Note: Candidate for all the stable branches. Signed-off-by: Anuj Pho