[Mesa-dev] [Bug 58665] Software rasterizer RGB swap

2012-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58665 Stefan de Konink changed: What|Removed |Added Attachment #72004|0 |1 is obsolete|

[Mesa-dev] [Bug 58665] New: Software rasterizer RGB swap

2012-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58665 Priority: medium Bug ID: 58665 Assignee: mesa-dev@lists.freedesktop.org Summary: Software rasterizer RGB swap Severity: normal Classification: Unclassified OS: All

Re: [Mesa-dev] [PATCH] configure.ac: Save user {C, CXX}FLAGS and append them at end.

2012-12-22 Thread Dan Nicholson
On Sat, Dec 22, 2012 at 10:47 AM, Johannes Obermayr wrote: > Am Samstag, 22. Dezember 2012, 09:21:33 schrieb Matt Turner: >> On Sat, Dec 22, 2012 at 9:16 AM, Johannes Obermayr >> wrote: >> > This way the user has the privilege of last decision and so the option to >> > build an optimized debug b

Re: [Mesa-dev] [PATCH] mesa: implement GL_ARB_texture_buffer_range (v3)

2012-12-22 Thread Eric Anholt
Christoph Bumiller writes: > v2: Record texObj.BufferSize as -1 in TexBuffer(non-Range) instead > of the buffer's current size so we know we always have to use the > full size of the buffer object (i.e. even if it changes without the > user calling TexBuffer again) for the texture. > > Clarify in

[Mesa-dev] [Bug 57173] sigsegv in Planeshift

2012-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57173 --- Comment #8 from freedesk...@skewray.com --- Created attachment 71987 --> https://bugs.freedesktop.org/attachment.cgi?id=71987&action=edit glxinfo -- You are receiving this mail because: You are the assignee for the bug. ___

[Mesa-dev] [Bug 57173] sigsegv in Planeshift

2012-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57173 --- Comment #7 from freedesk...@skewray.com --- Created attachment 71986 --> https://bugs.freedesktop.org/attachment.cgi?id=71986&action=edit dmesg -- You are receiving this mail because: You are the assignee for the bug. _

[Mesa-dev] [Bug 57173] sigsegv in Planeshift

2012-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57173 --- Comment #6 from freedesk...@skewray.com --- Created attachment 71985 --> https://bugs.freedesktop.org/attachment.cgi?id=71985&action=edit Xorg.0.log -- You are receiving this mail because: You are the assignee for the bug.

Re: [Mesa-dev] [PATCH] configure.ac: Save user {C, CXX}FLAGS and append them at end.

2012-12-22 Thread Johannes Obermayr
Am Samstag, 22. Dezember 2012, 09:21:33 schrieb Matt Turner: > On Sat, Dec 22, 2012 at 9:16 AM, Johannes Obermayr > wrote: > > This way the user has the privilege of last decision and so the option to > > build an optimized debug build again. > > --- > > You can just do CFLAGS="-g -O2" ./configu

Re: [Mesa-dev] [PATCH] configure.ac: Save user {C, CXX}FLAGS and append them at end.

2012-12-22 Thread Matt Turner
On Sat, Dec 22, 2012 at 9:16 AM, Johannes Obermayr wrote: > This way the user has the privilege of last decision and so the option to > build an optimized debug build again. > --- You can just do CFLAGS="-g -O2" ./configure can't you? ___ mesa-dev mail

[Mesa-dev] [PATCH] configure.ac: Save user {C,CXX}FLAGS and append them at end.

2012-12-22 Thread Johannes Obermayr
This way the user has the privilege of last decision and so the option to build an optimized debug build again. --- configure.ac | 14 -- 1 Datei geändert, 12 Zeilen hinzugefügt(+), 2 Zeilen entfernt(-) diff --git a/configure.ac b/configure.ac index 759cbaa..d3d9d62 100644 --- a/co

[Mesa-dev] [PATCH] mesa: implement GL_ARB_texture_buffer_range (v3)

2012-12-22 Thread Christoph Bumiller
v2: Record texObj.BufferSize as -1 in TexBuffer(non-Range) instead of the buffer's current size so we know we always have to use the full size of the buffer object (i.e. even if it changes without the user calling TexBuffer again) for the texture. Clarify invalid offset alignment error message. v

Re: [Mesa-dev] [RFC] Merge automake branch

2012-12-22 Thread Johannes Obermayr
Am Samstag, 22. Dezember 2012, 02:12:55 schrieb Michel Dänzer: > On Sam, 2012-12-22 at 01:06 +0100, Johannes Obermayr wrote: > > Am Samstag, 22. Dezember 2012, 00:31:16 schrieb Michel Dänzer: > > > On Fre, 2012-12-21 at 22:43 +0100, Johannes Obermayr wrote: > > > > Am Freitag, 21. Dezember 2012,

[Mesa-dev] [PATCH 3/3] st/mesa: add support for GL_ARB_texture_buffer_range

2012-12-22 Thread Christoph Bumiller
v2: Update to handle BufferSize being -1 and return a NULL sampler view if the specified range would cause out of bounds access. --- src/mesa/state_tracker/st_atom_texture.c | 22 +- src/mesa/state_tracker/st_extensions.c |6 ++ 2 files changed, 27 insertions(+), 1

[Mesa-dev] [PATCH 1/3] mesa: implement GL_ARB_texture_buffer_range

2012-12-22 Thread Christoph Bumiller
v2: Record texObj.BufferSize as -1 in TexBuffer(non-Range) instead of the buffer's current size so we know we always have to use the full size of the buffer object (i.e. even if it changes without the user calling TexBuffer again) for the texture. Clarify invalid offset alignment error message. --

[Mesa-dev] [PATCH 2/3] gallium: add PIPE_CAP_TEXTURE_BUFFER_OFFSET_ALIGNMENT

2012-12-22 Thread Christoph Bumiller
--- src/gallium/docs/source/screen.rst |3 +++ src/gallium/include/pipe/p_defines.h |3 ++- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index f4750e5..aea7542 100644 --- a/src/gallium/docs/source/