Re: [Mesa-dev] [PATCH] i965/miptree: Fix can_blit_slice()

2018-07-27 Thread Nanley Chery
On Tue, Jul 24, 2018 at 03:28:09PM +0300, Andres Gomez wrote: > Hi Nanley, > > I'm observing regressions for SKL and BDW which doesn't seem to be > solved with this new patch, in git master. Therefore, I've gone ahead > and reported: > https://bugs.freedesktop.org/show_bug.cgi?id=107359 > Hi And

Re: [Mesa-dev] [PATCH] i965/miptree: Fix can_blit_slice()

2018-07-24 Thread Andres Gomez
Hi Nanley, I'm observing regressions for SKL and BDW which doesn't seem to be solved with this new patch, in git master. Therefore, I've gone ahead and reported: https://bugs.freedesktop.org/show_bug.cgi?id=107359 On Mon, 2018-07-23 at 10:17 -0700, Nanley Chery wrote: > Satisfy the BLT engine's r

Re: [Mesa-dev] [PATCH] i965/miptree: Fix can_blit_slice()

2018-07-23 Thread Nanley Chery
On Mon, Jul 23, 2018 at 08:20:15PM +0100, Chris Wilson wrote: > Quoting Nanley Chery (2018-07-23 18:17:15) > > Satisfy the BLT engine's row pitch limitation on the destination > > miptree. The destination miptree is untiled, so its row_pitch will be > > slightly less than or equal to the source mip

Re: [Mesa-dev] [PATCH] i965/miptree: Fix can_blit_slice()

2018-07-23 Thread Chris Wilson
Quoting Nanley Chery (2018-07-23 18:17:15) > Satisfy the BLT engine's row pitch limitation on the destination > miptree. The destination miptree is untiled, so its row_pitch will be > slightly less than or equal to the source miptree's row_pitch. Use the > source miptree's row_pitch in can_blit_sli

[Mesa-dev] [PATCH] i965/miptree: Fix can_blit_slice()

2018-07-23 Thread Nanley Chery
Satisfy the BLT engine's row pitch limitation on the destination miptree. The destination miptree is untiled, so its row_pitch will be slightly less than or equal to the source miptree's row_pitch. Use the source miptree's row_pitch in can_blit_slice instead of its blt_pitch. Fixes 0288fe8d0417730