[Mesa-dev] [Bug 44239] spring rts crashes with r300g

2013-02-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44239 Pavel Ondračka pavel.ondra...@email.cz changed: What|Removed |Added CC|

Re: [Mesa-dev] [PATCH v2] configure.ac: Do not error out if librt is not available.

2013-02-09 Thread Matt Turner
On Fri, Feb 8, 2013 at 7:19 PM, Vinson Lee v...@freedesktop.org wrote: Some platforms, such as Mac OS X, do not have librt. But Mac OS X (apparently from my quick Google search) doesn't clock_gettime. clock_gettime is called from two places: src/gallium/auxiliary/os/os_time.c

Re: [Mesa-dev] [PATCH v2] configure.ac: Do not error out if librt is not available.

2013-02-09 Thread Vinson Lee
On Sat, Feb 9, 2013 at 11:38 AM, Matt Turner matts...@gmail.com wrote: On Fri, Feb 8, 2013 at 7:19 PM, Vinson Lee v...@freedesktop.org wrote: Some platforms, such as Mac OS X, do not have librt. But Mac OS X (apparently from my quick Google search) doesn't clock_gettime. clock_gettime is

Re: [Mesa-dev] [PATCH v2] configure.ac: Do not error out if librt is not available.

2013-02-09 Thread Matt Turner
On Sat, Feb 9, 2013 at 12:34 PM, Vinson Lee v...@freedesktop.org wrote: On Sat, Feb 9, 2013 at 11:38 AM, Matt Turner matts...@gmail.com wrote: On Fri, Feb 8, 2013 at 7:19 PM, Vinson Lee v...@freedesktop.org wrote: Some platforms, such as Mac OS X, do not have librt. But Mac OS X (apparently

[Mesa-dev] [Bug 58872] Mac OS X configure: error: Couldn't find clock_gettime

2013-02-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58872 Vinson Lee v...@freedesktop.org changed: What|Removed |Added Status|NEW |RESOLVED

[Mesa-dev] [PATCH] glsl: Initialize ast_function member variables.

2013-02-09 Thread Vinson Lee
Fixes uninitialized pointer field defect reported by Coverity. Signed-off-by: Vinson Lee v...@freedesktop.org --- src/glsl/glsl_parser_extras.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp index

[Mesa-dev] [PATCH 1/6] r300g/compiler: Add missing license headers

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com These are all files that I authored, but forgot to add the license headers. NOTE: This is a candidate for the stable branches. Signed-off-by: Tom Stellard thomas.stell...@amd.com --- .../drivers/r300/compiler/radeon_compiler_util.h | 27

[Mesa-dev] [PATCH 2/6] r300g/compiler: Fix typo in comment

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com --- .../drivers/r300/compiler/radeon_variable.c|2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/compiler/radeon_variable.c b/src/gallium/drivers/r300/compiler/radeon_variable.c index

[Mesa-dev] [PATCH 3/6] r300g/complier: Make r300_vertprog_swizzle_caps visible in other files

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com This will be used by the test suite in later commits. NOTE: This is a candidate for the stable branches. --- src/gallium/drivers/r300/compiler/r3xx_vertprog.c |2 +- src/gallium/drivers/r300/compiler/radeon_swizzle.h |2 ++ 2 files changed, 3

[Mesa-dev] [PATCH 4/6] r300g/tests: Exit test runner with a valid status code

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com This way make check can report whether or not the tests pass. NOTE: This is a candidate for the stable branches. --- .../r300/compiler/tests/r300_compiler_tests.c | 12 +++- .../r300/compiler/tests/r300_compiler_tests.h |3 ++-

[Mesa-dev] [PATCH 5/6] r300g/tests: Add helper functions for creating a full program

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com Now you can convert assembly strings into a full struct radeon_compiler object and use it to test individual compiler pases. NOTE: This is a candidate for the stable branches. --- .../drivers/r300/compiler/tests/rc_test_helpers.c | 67

[Mesa-dev] [PATCH 6/6] r300g/compiler: Fix bug in OMOD folding

2013-02-09 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com The OMOD value was only being folded to one instruction in cases where the MUL instruction was reading a value written by more than one instruction. https://bugs.freedesktop.org/show_bug.cgi?id=60503 NOTE: This is a candidate for the stable branches.