Re: [Mesa-dev] GLSL swizzle lowering

2010-08-30 Thread Marek Olšák
On Tue, Aug 31, 2010 at 2:14 AM, Ian Romanick wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > While I was trying to get one of the Humus demos working today, it > occurred to me that we can possibly do better than > ir_vec_index_to_cond_assign to lower variable indexing of vectors.

[Mesa-dev] GLSL swizzle lowering

2010-08-30 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 While I was trying to get one of the Humus demos working today, it occurred to me that we can possibly do better than ir_vec_index_to_cond_assign to lower variable indexing of vectors. In addition to using conditional assignment, we can also use a dot

[Mesa-dev] [Bug 29784] [regression] No shadows in Raytraced Shadows demo

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29784 Ian Romanick changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|mesa-...@list

[Mesa-dev] [Bug 29822] [glsl bisected] Unigine Sanctuary v2.2: no shadows (allocation of uniforms failed)

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29822 Sven Arvidsson changed: What|Removed |Added CC||s...@whiz.se -- Configure bugmail: htt

Re: [Mesa-dev] [PATCH 0/2] Add -ltalloc for Xlib GL and osmesa

2010-08-30 Thread Eric Anholt
On Mon, 30 Aug 2010 12:41:14 +0100, Jon TURNEY wrote: > Thanks for testing. > > For clarity, here are both patches again. > > Please apply. Pushed. Thanks! pgpEwxncMJcJh.pgp Description: PGP signature ___ mesa-dev mailing list mesa-dev@lists.freed

Re: [Mesa-dev] [PATCHES] surfaceless EGL: new DRI extension

2010-08-30 Thread nobled
Kristian Høgsberg wrote: > On Sun, Aug 29, 2010 at 1:54 PM, nobled wrote: >> The current egl_dri2 code for enabling the EGL_KHR_surfaceless_* >> extensions is a bit broken right now. First, the code in dri_util.c >> and drisw_util.c doesn't check if it gets passed a NULL __DRIconfig*, >> leading

[Mesa-dev] [Bug 29786] [glsl2] #pragma not supported

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29786 Ian Romanick changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] [Bug 29282] Various cygwin mklib/minstall fixes

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29282 --- Comment #5 from Jon TURNEY 2010-08-30 08:18:24 PDT --- Created an attachment (id=38305) View: https://bugs.freedesktop.org/attachment.cgi?id=38305 Review: https://bugs.freedesktop.org/review?bug=29282&attachment=38305 Adjust mklib so -lin

Re: [Mesa-dev] 7.8.3 release

2010-08-30 Thread tom fogal
tom fogal writes: > Brian Paul writes: > > On 08/23/2010 10:12 AM, tom fogal wrote: > > > Anyway the point of this mail is that I'd like to push whomever > > > does these things (Ian?) to create a 7.8.3 release. > > > > Tom, I'll merge your branch and do some testing here. > > > > I'd be happy to

Re: [Mesa-dev] [PATCHES] surfaceless EGL: new DRI extension

2010-08-30 Thread Kristian Høgsberg
On Sun, Aug 29, 2010 at 1:54 PM, nobled wrote: > The current egl_dri2 code for enabling the EGL_KHR_surfaceless_* > extensions is a bit broken right now. First, the code in dri_util.c > and drisw_util.c doesn't check if it gets passed a NULL __DRIconfig*, > leading to segfaults when egl_dri2 does

[Mesa-dev] [Bug 29823] GetUniform[if]v busted

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29823 --- Comment #8 from Brian Paul 2010-08-30 07:06:37 PDT --- Can you provide a simple glut test program for this? Then if I can find some time I'll try to debug further. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Mesa-dev] [Bug 29888] vsraytrace is broken on llvmpipe

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29888 --- Comment #1 from Michal Suchanek 2010-08-30 07:06:20 PDT --- actually r600 is broken in 7.8.2 but works with current git -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[Mesa-dev] [Bug 29844] (7.8.2) glGetActiveUniform incorrectly handles structs in shaders

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29844 --- Comment #4 from Brian Paul 2010-08-30 07:02:29 PDT --- It's unlikely we'll fix this for Mesa 7.8.x. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the

[Mesa-dev] [Bug 29888] New: vsraytrace is broken on llvmpipe

2010-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29888 Summary: vsraytrace is broken on llvmpipe Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Componen

[Mesa-dev] [PATCH 2/2] Add talloc to osmesa library dependencies

2010-08-30 Thread Jon TURNEY
also link osmesa with C++ standard libraries, as it now contains C++ code Signed-off-by: Jon TURNEY --- configure.ac |4 ++-- src/mesa/drivers/osmesa/Makefile |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 757

[Mesa-dev] [PATCH 1/2] Add talloc to dependencies for libGL built with xlib driver

2010-08-30 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- configure.ac |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 0b60837..757571a 100644 --- a/configure.ac +++ b/configure.ac @@ -578,8 +578,8 @@ xlib) GL_PC_LIB_PRIV="$GL_LIB_DEPS" GL_PC_CF

[Mesa-dev] [PATCH 0/2] Add -ltalloc for Xlib GL and osmesa

2010-08-30 Thread Jon TURNEY
Thanks for testing. For clarity, here are both patches again. Please apply. Jon TURNEY (2): Add talloc to dependencies for libGL built with xlib driver Add talloc to osmesa library dependencies configure.ac |8 src/mesa/drivers/osmesa/Makefile |4 ++--

Re: [Mesa-dev] pb: add void for flush ctx for mapping functions

2010-08-30 Thread José Fonseca
On Sat, 2010-08-28 at 02:12 -0700, Dave Airlie wrote: > Mostly we need this to remove a possible race on r300g, but I think > it'll make implementing buffers on r600g easier as well. > > More explains in the patch. > > Dave. Yes, an outcome of making transfers in-order context operations is that

Re: [Mesa-dev] Xlib GL needs -ltalloc

2010-08-30 Thread Kevin H. Hobbs
On 08/27/2010 05:34 PM, Jon TURNEY wrote: > On 27/08/2010 21:40, Kevin H. Hobbs wrote: >> > > Um. Sorry for the confusion, but there are two separate > patches in this thread. > > Did you try the first patch "Add talloc to dependencies for > libGL built with xlib driver", or the second patch "A

Re: [Mesa-dev] [PATCH] st/mesa: set the MaxVarying GLSL constant

2010-08-30 Thread José Fonseca
It makes sense now. I think you should replace the comment in the code with the paragraph you just wrote in your reply and then push it. Jose On Sun, 2010-08-29 at 07:55 -0700, Marek Olšák wrote: > PIPE_CAP_MAX_FS_INPUTS specifies the number of COLORn + GENERICn > inputs and is set in MaxNativeAt