[Mesa-dev] [Bug 38085] Mesa: User error: GL_INVALID_ENUM in glTexParameter(param=0x2901)

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38085 --- Comment #5 from Alexandre Demers 2011-06-09 19:08:38 PDT --- Maybe you can help me on that one. When adding a break point at _mesa_error, it is catched, but then I lose the possibility to use my keyboard and mouse. So I can't get a backtrace

[Mesa-dev] [Bug 37274] Crash in draw_llvm_shader23 (r300g, rs690, in warzone2100)

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37274 --- Comment #2 from okias 2011-06-09 18:32:12 PDT --- crash is still present :-( (few days old git) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assi

[Mesa-dev] [Bug 38129] Account request

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38129 --- Comment #1 from Bryan Cain 2011-06-09 18:20:11 PDT --- Created an attachment (id=47795) --> (https://bugs.freedesktop.org/attachment.cgi?id=47795) SSH public key (RSA) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=e

[Mesa-dev] [Bug 38129] New: Account request

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38129 Summary: Account request Product: Mesa Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Other

[Mesa-dev] [PATCH] glapi: Add API that can create a _glapi_table from a dlfcn handle

2011-06-09 Thread Jeremy Huddleston
I have a patch that gets most of the way there, but it still has some quirks that I'd like to figure out and address. The generated code doesn't check for FramebufferTextureLayerARB as an alias for FramebufferTextureLayerEXT. Could someone please explain what is going on there and why Frameb

Re: [Mesa-dev] [PATCH] i965: Add support for GL_FIXED vertex attributes.

2011-06-09 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 06/08/2011 03:20 PM, Eric Anholt wrote: > This sadly requires work in the VS to rescale them, because the > hardware doesn't support this format natively. > > Fixes arb_es2_compatibility-fixed-type and gtf/fixed_data_type. This also fixes the ES2

Re: [Mesa-dev] s/bool/boolean/

2011-06-09 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 06/08/2011 07:54 AM, Jose Fonseca wrote: > Personally, I prefer the standard C bool type, given it's a) standard, b) > shorter. Furthermore Microsoft's windows.h already defines boolean: I'm with Jose on this one. -BEGIN PGP SIGNATURE- Ver

Re: [Mesa-dev] Mesa (master): mga: enable GL_ARB_vertex_array_object extension

2011-06-09 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 06/07/2011 03:35 PM, Brian Paul wrote: > Module: Mesa > Branch: master > Commit: 1d71bbed3bbeb99d954cc137e4923c5db6e063c8 > URL: > http://cgit.freedesktop.org/mesa/mesa/commit/?id=1d71bbed3bbeb99d954cc137e4923c5db6e063c8 > > Author: Nicolas Kai

Re: [Mesa-dev] [PATCH] glx/dri2: Paper over errors in DRI2Connect when indirect

2011-06-09 Thread Julien Cristau
On Thu, Jun 9, 2011 at 18:57:54 +1000, Christopher James Halse Rogers wrote: > DRI2 will throw BadRequest for this when the client is not local, but > DRI2 is an implementation detail and not something callers should have > to know about. Silently swallow errors in this case, and just propagate

[Mesa-dev] Fixing dri2 glXWaitX() for pixmaps WAS OpenGL compositors and glxWaitX()

2011-06-09 Thread Thomas Hellstrom
It turned out that the problem described below occured because for pixmaps, dri2 glXWaitX() is a no-op: The X server side doesn't create a fake front, and the dri2 glx code hence can't send a dri2CopyRegion from front to fake front. I'm not sure what the best way to fix this is, but if I don't

Re: [Mesa-dev] [PATCH 10/10] intel: Request DRI2 buffers for separate stencil and hiz

2011-06-09 Thread Chad Versace
On Mon, 06 Jun 2011 18:56:20 -0700, Kenneth Graunke wrote: > On 06/04/2011 05:45 PM, Chad Versace wrote: > > When it is sensible to do so, > > 1) intelCreateBuffer() now attaches separate depth and stencil > > buffers > > to the framebuffer it creates. > > 2) intel_updat

Re: [Mesa-dev] [PATCH 04/10] intel: Define enum intel_dri2_has_hiz

2011-06-09 Thread Chad Versace
On Mon, 06 Jun 2011 17:50:06 -0700, Kenneth Graunke wrote: > On 06/04/2011 05:45 PM, Chad Versace wrote: > > ... which indicates if the X driver supports DRI2BufferHiz and > > DRI2BufferStencil. > > > > I'm placing this in its own commit due to the large comment block. > > > > CC: Eric Anholt > >

Re: [Mesa-dev] [PATCH 10/10] intel: Request DRI2 buffers for separate stencil and hiz

2011-06-09 Thread Chad Versace
On Tue, 07 Jun 2011 08:15:51 -0700, Kenneth Graunke wrote: > On 06/07/2011 01:33 AM, Julien Cristau wrote: > > On Mon, Jun 6, 2011 at 18:56:20 -0700, Kenneth Graunke wrote: > > > >> I'd make this an assertion. must_use_separate_stencil is only set for > >> gen>= 7, and I assert that try_separat

Re: [Mesa-dev] [PATCH 0/10] i965: Implement hiz and separate stencil for window framebuffer

2011-06-09 Thread Chad Versace
I don't have performance data yet, but it's coming soon :) I'm still unable to test real-world apps with hiz *fully* enabled because i965 is still using packed detpth/stencil when the app requests a texture or FBO with GL_DEPTH_STENCIL format. This should be fixed in two or three days, and I'll gi

Re: [Mesa-dev] [PATCH 04/10] intel: Define enum intel_dri2_has_hiz

2011-06-09 Thread Chad Versace
On Tue, 07 Jun 2011 10:33:44 -0700, Eric Anholt wrote: > On Sat, 4 Jun 2011 17:45:37 -0700, Chad Versace wrote: > > ... which indicates if the X driver supports DRI2BufferHiz and > > DRI2BufferStencil. > > > > I'm placing this in its own commit due to the large comment block. > > > > CC: Eric

Re: [Mesa-dev] [PATCH] intel: Fix mipmap and format handling of blit glCopyPixels().

2011-06-09 Thread Chad Versace
On Wed, 8 Jun 2011 12:27:04 -0700, Eric Anholt wrote: > Fixes fbo-mipmap-copypix. > --- > src/mesa/drivers/dri/intel/intel_pixel_copy.c | 98 +--- > 1 files changed, 53 insertions(+), 45 deletions(-) > > diff --git a/src/mesa/drivers/dri/intel/intel_pixel_copy.c > b/src/m

[Mesa-dev] [Bug 32000] [glsl] Texture value get's corrupt as soon as it appears in if statement

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32000 Ian Romanick changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] [Bug 38085] Mesa: User error: GL_INVALID_ENUM in glTexParameter(param=0x2901)

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38085 Ian Romanick changed: What|Removed |Added Keywords||NEEDINFO --- Comment #4 from Ian Romanick

Re: [Mesa-dev] [PATCH 1/3] i965/gen6: Refactor SF setup a bit to handle overrides in one place.

2011-06-09 Thread Eric Anholt
On Wed, 08 Jun 2011 14:49:39 -0700, Kenneth Graunke wrote: > For the series: > Acked-by: Kenneth Graunke > > gen7_sf_state.c will need updating as well. Would you mind doing that, > or should I? I'll try to get to this at the office today, but I'll do it as a separate series. pgpcm4amXDsct

Re: [Mesa-dev] [PATCH] intel: Fix mipmap and format handling of blit glCopyPixels().

2011-06-09 Thread Eric Anholt
On Wed, 08 Jun 2011 13:00:48 -0700, Chad Versace wrote: > On Wed, 8 Jun 2011 12:27:04 -0700, Eric Anholt wrote: > > Fixes fbo-mipmap-copypix. > > --- > > src/mesa/drivers/dri/intel/intel_pixel_copy.c | 98 > > +--- > > 1 files changed, 53 insertions(+), 45 deletions(-) >

[Mesa-dev] [PATCH] glx/dri2: Paper over errors in DRI2Connect when indirect

2011-06-09 Thread Christopher James Halse Rogers
DRI2 will throw BadRequest for this when the client is not local, but DRI2 is an implementation detail and not something callers should have to know about. Silently swallow errors in this case, and just propagate the failure through DRI2Connect's return code. Bugzilla: https://bugs.freedesktop.or

[Mesa-dev] [Bug 37234] gears of glxgears change brightness

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37234 --- Comment #4 from Fabio Pedretti 2011-06-09 01:44:11 PDT --- This is likely a duplicate of bug #36282 which is fixed now. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[Mesa-dev] [Bug 36282] 34a5d3b9f4740601708c82093e2114356d749e65: glxgears segfaults when compiled with shared glapi

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36282 --- Comment #41 from Fabio Pedretti 2011-06-09 01:32:08 PDT --- Just a note: configure says shared glapi is experimental: --enable-shared-glapi EXPERIMENTAL. Enable shared glapi for OpenGL [default=no] Is it still

[Mesa-dev] [Bug 36282] 34a5d3b9f4740601708c82093e2114356d749e65: glxgears segfaults when compiled with shared glapi

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36282 Marc changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Mesa-dev] [Bug 38092] Mesa outputs warning wih Unigine sanctuary (Mesa warning: glDraw[Range]Elements())

2011-06-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38092 Alexandre Demers changed: What|Removed |Added Status|NEW |RESOLVED Resolution|