Re: [Mesa-dev] [PATCH] llvmpipe: fix lp_rast_plane alignment on 32bit

2016-03-15 Thread Jose Fonseca
On 15/03/16 04:41, srol...@vmware.com wrote: From: Roland Scheidegger Some rasterization code relies (for sse) on the first and third planes (but not the second for now) being 128bit aligned, and we didn't get that on 32bit - I mistakenly thought the 64bit number in the struct would get the thi

[Mesa-dev] [PATCH] llvmpipe: fix lp_rast_plane alignment on 32bit

2016-03-14 Thread sroland
From: Roland Scheidegger Some rasterization code relies (for sse) on the first and third planes (but not the second for now) being 128bit aligned, and we didn't get that on 32bit - I mistakenly thought the 64bit number in the struct would get the thing aligned to 64bit even on 32bit archs. Stepha