Re: [Mesa-dev] [PATCH] anv/copy: Fix Copying between Buffers and Images of different dimensions

2016-05-13 Thread Jason Ekstrand
On Mon, May 9, 2016 at 12:26 PM, Nanley Chery wrote: > From: Nanley Chery > > This function previously assumed that the Buffer and Image had matching > dimensions. However, it is possible to copy from a buffer with larger > dimensions than the image. Modify the copy function to enable this. > >

[Mesa-dev] [PATCH] anv/copy: Fix Copying between Buffers and Images of different dimensions

2016-05-09 Thread Nanley Chery
From: Nanley Chery This function previously assumed that the Buffer and Image had matching dimensions. However, it is possible to copy from a buffer with larger dimensions than the image. Modify the copy function to enable this. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=95292 Signed