Re: [Mesa-dev] [PATCH] swrast: fix assorted bugs in software blit code

2013-01-17 Thread Anuj Phogat
On Thu, Jan 17, 2013 at 9:37 PM, Brian Paul wrote: > 1. The loop over dest buffers in blit_linear() needed a null pointer > check. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=59499 > > 2. The code to grab the drawRb's format needs to be inside the drawing loop. > > 3. An equality test was

Re: [Mesa-dev] [PATCH] swrast: fix assorted bugs in software blit code

2013-01-17 Thread Kenneth Graunke
On 01/17/2013 08:07 AM, Brian Paul wrote: 1. The loop over dest buffers in blit_linear() needed a null pointer check. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=59499 2. The code to grab the drawRb's format needs to be inside the drawing loop. 3. An equality test was using = instead of

[Mesa-dev] [PATCH] swrast: fix assorted bugs in software blit code

2013-01-17 Thread Brian Paul
1. The loop over dest buffers in blit_linear() needed a null pointer check. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=59499 2. The code to grab the drawRb's format needs to be inside the drawing loop. 3. An equality test was using = instead of == thus messing up a renderbuffer attachmen