Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread Dan Nicholson
On Tue, Nov 24, 2009 at 3:55 PM, tom fogal wrote: > Dan Nicholson writes: >> On Tue, Nov 24, 2009 at 12:37 PM, tom fogal wrote: >> > Dan Nicholson writes: >> >> On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote: >> >> > tom fogal wrote: >> >> >> Brian Paul writes: >> >> >>> Please test and re

Re: [Mesa3d-dev] Can mesa library be built on aix 5.3 platform

2009-11-24 Thread tom fogal
1. Please CC the list in replies. 2. You've again sent me a mail in a `gbk' charset, which was really in iso-8859-1 or something similar, and all of that was needlessly encoded via base64. This is the last reply you'll get from me without fixing your mail client. majun writes: > Glad to

[Mesa3d-dev] st_shader-varients merge tomorrow

2009-11-24 Thread Roland Scheidegger
I'm planning to merge st_shader-varients branch to master tomorrow. This should not adversely affect drivers, unless they rely on generics inputs/outputs semantic_index always starting at 0 without holes (something that they shouldn't do but it would have worked previously). Feedback for hw driver

Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread tom fogal
tom fogal writes: > Dan Nicholson writes: > > On Tue, Nov 24, 2009 at 12:37 PM, tom fogal wrot= > e: > > > Dan Nicholson writes: > > >> On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote= > : > > >> > tom fogal wrote: > > >> >> Brian Paul writes: > > >> >> Secondly, the AIX build is failing in

Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread tom fogal
Dan Nicholson writes: > On Tue, Nov 24, 2009 at 12:37 PM, tom fogal wrote: > > Dan Nicholson writes: > >> On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote: > >> > tom fogal wrote: > >> >> Brian Paul writes: > >> >>> Please test and report any problems ASAP.  If there aren't any issues > >> >>

Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread Dan Nicholson
On Tue, Nov 24, 2009 at 12:37 PM, tom fogal wrote: > Dan Nicholson writes: >> On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote: >> > tom fogal wrote: >> >> Brian Paul writes: >> >>> Please test and report any problems ASAP.  If there aren't any issues >> >>> we'd like to release 7.6.1 on Frida

Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread tom fogal
Dan Nicholson writes: > On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote: > > tom fogal wrote: > >> Brian Paul writes: > >>> Please test and report any problems ASAP.  If there aren't any issues > >>> we'd like to release 7.6.1 on Friday or Saturday. [snip] > >> Secondly, the AIX build is fail

Re: [Mesa3d-dev] Mesa 7.6.1 release candidate 1

2009-11-24 Thread Dan Nicholson
On Thu, Nov 19, 2009 at 8:28 AM, Brian Paul wrote: > tom fogal wrote: >> Brian Paul writes: >>> Please test and report any problems ASAP.  If there aren't any issues >>> we'd like to release 7.6.1 on Friday or Saturday. >> >> We've had the attached AIX patch locally for a while now.  Sorry I >> d

Re: [Mesa3d-dev] Can mesa library be built on aix 5.3 platform

2009-11-24 Thread tom fogal
Please send your mails in plain text, preferably without any encoding. Your base64 ends up raw in my replies, so I've just deleted it. Anyway, I *just* fixed AIX 5.3 support last week. Use git master, git mesa_7_6_branch, or just wait for the 7.6.1 release. I'd love to hear how it works for you;

[Mesa3d-dev] TGSI simplification branch

2009-11-24 Thread Keith Whitwell
I've pushed a feature branch with some tgsi simplifications in it. With these I've removed the biggest remaining oddities of that language, and it's getting to a place where I'm starting to be happy with it as a foundation for future work. Most of the surprising stuff like multiple negate flags,

[Mesa3d-dev] Video Hackfest conclusions

2009-11-24 Thread Benjamin Otte
Hi, As you may be aware, we held a video hackfest last week in Barcelona. Developers met to discuss how best to improve GPU support for video applications. See http://gstreamer.freedesktop.org/wiki/VideoHackfest for more details. In particular, you might be interested in the notes some people took

Re: [Mesa3d-dev] Pure G3D libs

2009-11-24 Thread Chia-I Wu
On Sun, Nov 15, 2009 at 06:56:26PM +, Jakob Bornecrantz wrote: > Hi I'm sorry for taking this long to respond. > The basic idea is to create API struct that holds the functions for > the different APIs and then just switch between those in EGL. There > are also some changes to the in the way th

Re: [Mesa3d-dev] Mesa (master): tgsi: Fix POSITION and FACE fragment shader inputs.

2009-11-24 Thread michal
Keith Whitwell pisze: > On Mon, 2009-11-23 at 17:28 -0800, Brian Paul wrote: > >> For OpenGL, the front-facing attribute is either 0 (back) or 1 (front) >> rather than +/-1. >> >> I think we'll need to do some additional work (insert a MAD instr?) in the >> Mesa->TGSI translation to account fo

[Mesa3d-dev] Can mesa library be built on aix 5.3 platform

2009-11-24 Thread majun
Hi everyone: I have downloaded mesa 7.6 and 7.5.1, and both can be built on Linux platform, but when I build these two on aix platform, there are always errors, such as " not found " 、CC not found etc. Can anybody tell me if mesa library can be built on aix 5.3 platform? Or can anybody give

Re: [Mesa3d-dev] Mesa (master): tgsi: Fix POSITION and FACE fragment shader inputs.

2009-11-24 Thread Keith Whitwell
On Mon, 2009-11-23 at 17:28 -0800, Brian Paul wrote: > For OpenGL, the front-facing attribute is either 0 (back) or 1 (front) rather > than +/-1. > > I think we'll need to do some additional work (insert a MAD instr?) in the > Mesa->TGSI translation to account for this difference. I could dig i