[Mesa-dev] [PATCH] i965/vs: include format argument in debug printf

2012-10-18 Thread Tapani Pälli
otherwise some compilers will throw error "error: format not a string literal and no format arguments" Signed-off-by: Tapani Pälli --- src/mesa/drivers/dri/i965/brw_vec4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/dri

[Mesa-dev] Warning in brw_fs_reg_allocate.cpp

2012-10-18 Thread Brian Paul
brw_fs_reg_allocate.cpp: In function ‘int count_to_loop_end(fs_inst*)’: brw_fs_reg_allocate.cpp:177:13: warning: ‘ip’ is used uninitialized in this function This clearly isn't right: 177: int ip = ip; commit a087e9f27f088c4bd00b2fddb65629c83d404860 Author: Eric Anholt Date: Tue Oct 2 15:01:

Re: [Mesa-dev] [PATCH] Finish _HAVE_FULL_GL removal

2012-10-18 Thread Ian Romanick
On 10/16/2012 07:39 PM, Matt Turner wrote: Reviewed-by: Ian Romanick --- doxygen/main.doxy |2 +- src/mesa/main/api_exec.c | 34 -- src/mesa/main/enums.h | 12 src/mesa/main/mfeatures.h |4 4 files changed, 1 inse

[Mesa-dev] [Bug 52996] Read out of bounds in swizzle_for_size() (MesaLib/src/mesa/program/ir_to_mesa.cpp)

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52996 Ian Romanick changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [PATCH 1/2] intel: Enable S3TC extensions always

2012-10-18 Thread Ian Romanick
On 10/18/2012 02:28 PM, Jordan Justen wrote: RE: Series Candidate for stable? Patch 1/2 is probably only a candidate for 9.0 branch. It has a weak dependency on some other work that's only on 9.0 (see 42723d8). Patch 2/2 could be a candidate for both 8.0 and 9.0. I suspect that most peop

Re: [Mesa-dev] [PATCH 1/2] intel: Enable S3TC extensions always

2012-10-18 Thread Jordan Justen
RE: Series Candidate for stable? Reviewed-by: Jordan Justen On Thu, Oct 18, 2012 at 2:02 PM, Ian Romanick wrote: > From: Ian Romanick > > Always enable the use of pre- compressed texture data, and always advertise > the ability to do on-line compression. The ability to perform on-line > comp

[Mesa-dev] [PATCH 1/2] intel: Enable S3TC extensions always

2012-10-18 Thread Ian Romanick
From: Ian Romanick Always enable the use of pre- compressed texture data, and always advertise the ability to do on-line compression. The ability to perform on-line compression still requires the presence of libtxc_dxtn, so sometimes the driver incorrectly over-advertises functionality. This sh

[Mesa-dev] [PATCH 2/2] i965: Enable floating-point textures always

2012-10-18 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/drivers/dri/i965/brw_context.c | 9 - src/mesa/drivers/dri/intel/intel_extensions.c | 2 -- 2 files changed, 11 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c

Re: [Mesa-dev] [PATCH] glx: Add GLXBadProfileARB to the error string list

2012-10-18 Thread Ian Romanick
On 10/17/2012 11:52 AM, Brian Paul wrote: On 10/17/2012 12:38 PM, Adam Jackson wrote: Note: This is a candidate for the stable branches. Signed-off-by: Adam Jackson --- src/glx/glxext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 4d59a06..e55

[Mesa-dev] [PATCH 3/3] radeon/llvm: fix crashes when using MULLO_INT

2012-10-18 Thread Vincent Lejeune
--- lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp | 19 ++- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp b/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp index d5ae33d..f499c78 100644 --- a/lib/Target/AMDGPU/R600Expand

[Mesa-dev] [PATCH 2/3] radeon/llvm: Cayman uses vector instruction for SIN/COS/RECIP_CLAMPED/RECIPSQRT_IEEE

2012-10-18 Thread Vincent Lejeune
--- lib/Target/AMDGPU/R600Instructions.td | 34 +++--- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/lib/Target/AMDGPU/R600Instructions.td b/lib/Target/AMDGPU/R600Instructions.td index da32329..cb44e6e 100644 --- a/lib/Target/AMDGPU/R600Instructions.t

[Mesa-dev] [PATCH 1/3] radeon/llvm: adds a flag operand to R600_{1, 2}OP

2012-10-18 Thread Vincent Lejeune
--- lib/Target/AMDGPU/R600Defines.h | 4 ++-- lib/Target/AMDGPU/R600Instructions.td | 11 +++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/lib/Target/AMDGPU/R600Defines.h b/lib/Target/AMDGPU/R600Defines.h index 8191c6a..ca8fdf5 100644 --- a/lib/Target/AMDGPU/R600De

[Mesa-dev] [Bug 55998] Pretty huge slowdown in mesa 9.0

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55998 Arthur Titeica changed: What|Removed |Added CC||art...@psw.ro -- You are receiving thi

[Mesa-dev] Xorg foundation support of Mesa

2012-10-18 Thread Alex Deucher
Hello Mesa developers, In the last X.Org foundation board meeting we discussed expanding our charter to encourage and aid in the development of projects related to the X Window System (Mesa, DRI, Wayland, etc.). While this is already largely the case (most of your EVoC project have been non-X

Re: [Mesa-dev] [PATCH 2/2] radeon/llvm: Fix DIV_Common pattern use

2012-10-18 Thread Tom Stellard
On Thu, Oct 18, 2012 at 04:12:28PM +0200, Vincent Lejeune wrote: > This fix a crash in neverball with cayman > --- > lib/Target/AMDGPU/R600Instructions.td | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > For both patches: Reviewed-by: Tom Stellard > diff --git a/lib/Target/AMDGPU/R

[Mesa-dev] [Bug 56140] [Mesa-current] [clover] build failure in clvover/api/transfer.cpp

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56140 --- Comment #1 from Dmitry Cherkassov --- that dirty patch makes it at least compile diff --git a/src/gallium/state_trackers/clover/api/transfer.cpp b/src/gallium/state_trackers/clover/api/transfer.cpp index 8ea8f86..10b454b 100644 --- a/src/gal

[Mesa-dev] [Bug 55998] Pretty huge slowdown in mesa 9.0

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55998 wojtek changed: What|Removed |Added CC||wojta...@wp.pl --- Comment #11 from wojtek ---

[Mesa-dev] [Bug 56140] New: [Mesa-current] [clover] build failure in clvover/api/transfer.cpp

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56140 Priority: medium Bug ID: 56140 Assignee: mesa-dev@lists.freedesktop.org Summary: [Mesa-current] [clover] build failure in clvover/api/transfer.cpp Severity: normal Classi

[Mesa-dev] [PATCH 2/2] radeon/llvm: Fix DIV_Common pattern use

2012-10-18 Thread Vincent Lejeune
This fix a crash in neverball with cayman --- lib/Target/AMDGPU/R600Instructions.td | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Target/AMDGPU/R600Instructions.td b/lib/Target/AMDGPU/R600Instructions.td index 2209df7..45b6b10 100644 --- a/lib/Target/AMDGPU/R600Instru

[Mesa-dev] [PATCH 1/2] radeon/llvm: Set FlagOperandIdx for RECIP_IEEE

2012-10-18 Thread Vincent Lejeune
Fix nexuiz-glx -benchmark demos/demo1 crash --- lib/Target/AMDGPU/R600Instructions.td | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Target/AMDGPU/R600Instructions.td b/lib/Target/AMDGPU/R600Instructions.td index 483d10a..2209df7 100644 --- a/lib/Target/AMDGPU/

[Mesa-dev] [Bug 55998] Pretty huge slowdown in mesa 9.0

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55998 Jure Repinc changed: What|Removed |Added CC||jlp.b...@gmail.com -- You are receiving t

[Mesa-dev] [PATCH] radeonsi: Fix LLVM 3.2 r600/radeonsi error message Signed-off-by: Dmitry Cherkasov

2012-10-18 Thread Dmitry Cherkasov
--- configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6f851e2..2722181 100644 --- a/configure.ac +++ b/configure.ac @@ -1757,7 +1757,7 @@ radeon_llvm_check() { if test "$LLVM_VERSION_MAJOR" -ge "3" -a "x$LLVM_VERSION" != "x3.