[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #10 from Shaker 2010-08-14 23:56:55 PDT --- When I write kwin --replace in console shows me that : debug_get_bool_option: RADEON_HYPERZ = FALSE radeon: Successfully grabbed chipset info from kernel! radeon: DRM version: 2.0.0 ID: 0x4

[Mesa-dev] [PATCH] draw_llvm: fix segfaults on non-SSE2 CPUs where it is disabled

2010-08-14 Thread Luca Barbieri
Currently draw_llvm refuses to create itself on non-SSE2 CPUs due to an alleged LLVM bug. However, this is implemented improperly, because other parts of draw still attempt to access draw->llvm, resulting in segfaults. Instead, put the check in debug_get_option_draw_use_llvm, check that before ca

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #9 from Marek Olšák 2010-08-14 19:11:30 PDT --- Does it still crash? Have kwin effects ever worked? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-14 Thread keith whitwell
On Fri, Aug 13, 2010 at 5:25 PM, Chia-I Wu wrote: > On Fri, Aug 13, 2010 at 11:35 PM, Keith Whitwell wrote: >> On Fri, 2010-08-13 at 08:09 -0700, Chia-I Wu wrote: >>> On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: >>> > On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: >>> >> On Fri,

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #8 from Shaker 2010-08-14 14:27:42 PDT --- Thanks, but desktop effects, don't enable :S I install patched mesa thus : git am < draw.patch ./configure --with-dri-drivers=r300 --enable-gallium-radeon --enable-debug make make install

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #7 from Marek Olšák 2010-08-14 14:03:21 PDT --- git am < patch_file -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. __

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #6 from Shaker 2010-08-14 13:33:48 PDT --- I apologize for the my stupid question, but how patch mesa with your code :S. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #5 from Marek Olšák 2010-08-14 13:22:02 PDT --- Created an attachment (id=37878) View: https://bugs.freedesktop.org/attachment.cgi?id=37878 Review: https://bugs.freedesktop.org/review?bug=29578&attachment=37878 Possible fix Can yo

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 --- Comment #4 from Shaker 2010-08-14 13:16:11 PDT --- How to fix it ? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. ___

[Mesa-dev] [Bug 29578] [Gallium/Draw] Kwin effects don't work with Gallium3D driver

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29578 Marek Olšák changed: What|Removed |Added Summary|Kwin effects don't work |[Gallium/Draw] Kwin effects

[Mesa-dev] [PATCH 2/2] translate_sse: major rewrite (v4)

2010-08-14 Thread Luca Barbieri
Changes in v4: - Use x86_target() and x86_target_caps() - Enable translate_sse in x86-64, but not in Win64 Changes in v3: - Win64 support (untested) - Use u_cpu_detect.h constants instead of #ifs Changes in v2: - Minimize #ifs - Give a name to magic number CHANNELS_0001 - Add support for CPUs wit

[Mesa-dev] [PATCH 5/5] st/mesa: fix ReadPixels crashes when reading depth/stencil from a FBO

2010-08-14 Thread Marek Olšák
NOTE: This is a candidate for the 7.8 branch. --- src/mesa/state_tracker/st_cb_readpixels.c | 13 +++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/mesa/state_tracker/st_cb_readpixels.c b/src/mesa/state_tracker/st_cb_readpixels.c index b8493da..3cfb262 100644 ---

[Mesa-dev] [PATCH 4/5] st/mesa: implement depth-only blit for BlitFramebuffer

2010-08-14 Thread Marek Olšák
--- src/mesa/state_tracker/st_cb_blit.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/mesa/state_tracker/st_cb_blit.c b/src/mesa/state_tracker/st_cb_blit.c index b3c7544..5367484 100644 --- a/src/mesa/state_tracker/st_cb_blit.c +++ b/src/mesa/state_tracker/s

[Mesa-dev] [PATCH 3/5] util: implement depth blitting in u_blit

2010-08-14 Thread Marek Olšák
Now BlitFramebuffer works with depth textures. The stencil is ignored. Blitting stencil could be implement using something like util_resource_copy_region. --- src/gallium/auxiliary/util/u_blit.c | 59 +- 1 files changed, 43 insertions(+), 16 deletions(-) diff --g

[Mesa-dev] [PATCH 2/5] st/mesa: fix BlitFramebuffer for D24S8 textures

2010-08-14 Thread Marek Olšák
This is the same issue as in the previous patch, but here the Blit is not implemented for separate depth and stencil buffers at all (such a configuration is not supported in Gallium) and the code incorrectly treated a D24S8 texture as two separate buffers, making this Blit a no-op. --- src/mesa/st

[Mesa-dev] [PATCH 1/5] st/mesa: use pipe_context::clear for D24S8 textures when appropriate

2010-08-14 Thread Marek Olšák
If PIPE_CAP_DEPTHSTENCIL_CLEAR_SEPARATE is not advertised and there is a D24S8 texture bound and the mask is BUFFER_BIT_DEPTH|BUFFER_BIT_STENCIL, the state tracker always cleared the texture with a quad instead of using pipe_context::clear. --- src/mesa/state_tracker/st_cb_clear.c | 14 +

[Mesa-dev] [Bug 29571] [glsl2] glcpp/glcpp-parse.y(312) : error C2146: syntax error : missing ')' before identifier 'PRIiMAX'

2010-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29571 José Fonseca changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [PATCH] u_cpu_detect: remove arch and little_endian

2010-08-14 Thread Jose Fonseca
Looks perfect Luca. Thanks Jose From: Luca Barbieri [luca.barbi...@gmail.com] On Behalf Of Luca Barbieri [l...@luca-barbieri.com] Sent: Saturday, August 14, 2010 4:34 To: Keith Whitwell; Jose Fonseca Cc: mesa-dev@lists.freedesktop.org; Luca Barbieri Subje