Re: [Nouveau] [Mesa3d-dev] [RFC] Merge of a reincarnation of the nouveau classic mesa driver.

2010-02-05 Thread Keith Whitwell
On Thu, Feb 4, 2010 at 6:39 PM, Keith Whitwell keith.whitw...@googlemail.com wrote: On Tue, Feb 2, 2010 at 11:45 PM, Brian Paul bri...@vmware.com wrote: Xavier Chantry wrote: On Tue, Feb 2, 2010 at 12:01 PM, Francisco Jerez curroje...@riseup.net wrote: For a long time the gallium pipe

[Nouveau] [PATCH] nv50/accel: Fix mangled A8+A8 shader.

2010-02-05 Thread Marcin Koƛcielnicki
Turns out we used a misaligned long instruction near the end, and the shader was getting killed after writing R, A components. This has gone unnoticed since the remaining G, B outputs aren't actually used. --- src/nv50_accel.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff

Re: [Nouveau] [PATCH] nv50/accel: Fix mangled A8+A8 shader.

2010-02-05 Thread Christoph Bumiller
On 02/05/2010 06:01 PM, Marcin Koƛcielnicki wrote: Turns out we used a misaligned long instruction near the end, and the shader was getting killed after writing R, A components. This has gone unnoticed since the remaining G, B outputs aren't actually used. Thank you, pushed. ---