Re: [Mesa-dev] [PATCH] glx/dri2: Respect --enable/disable-driglx-direct

2014-02-16 Thread Jeremy Huddleston Sequoia
On Feb 16, 2014, at 17:15, Emil Velikov wrote: > On 16/02/14 02:00, Jeremy Huddleston Sequoia wrote: >> Mesa master hasn't built for OSX for over a year now, unfortunately, but I >> agree excluding in Makefile.am is preferable to cpp-guards. Hopefully >> "someone" will have the time and patie

Re: [Mesa-dev] [PATCH] glsl: Add locking to builtin_builder singleton

2014-02-16 Thread Kenneth Graunke
On 02/16/2014 10:33 PM, Daniel Kurtz wrote: > On Tue, Feb 11, 2014 at 4:27 PM, Kenneth Graunke > wrote: >> On 02/07/2014 03:29 AM, Daniel Kurtz wrote: >>> Consider a multithreaded program with two contexts A and B, and the >>> following scenario: >>> >>> 1. Context A calls initialize(), which all

[Mesa-dev] [Bug 75061] bug in clearing color buffer

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75061 --- Comment #1 from Michel Dänzer --- Please attach a backtrace of the crash from gdb. Also, running the program in valgrind (with/out --tool=helgrind) might give some hints. -- You are receiving this mail because: You are the assignee for the

Re: [Mesa-dev] [PATCH] glx/dri2: Respect --enable/disable-driglx-direct

2014-02-16 Thread Emil Velikov
On 16/02/14 02:00, Jeremy Huddleston Sequoia wrote: > Mesa master hasn't built for OSX for over a year now, unfortunately, but I > agree excluding in Makefile.am is preferable to cpp-guards. Hopefully > "someone" will have the time and patience to get it working again in the near > future. > H

Re: [Mesa-dev] [PATCH] glx/dri2: Respect --enable/disable-driglx-direct

2014-02-16 Thread Jeremy Huddleston Sequoia
Mesa master hasn't built for OSX for over a year now, unfortunately, but I agree excluding in Makefile.am is preferable to cpp-guards. Hopefully "someone" will have the time and patience to get it working again in the near future. --Jeremy Sent from my iPad > On Feb 13, 2014, at 8:29, Ian Ro

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 --- Comment #5 from celletus --- I have seen there was 2 updades of the mesa today.I am still have the same problem,a black screen when launch Dota 2.Thank you. -- You are receiving this mail because: You are the assignee for the bug. _

[Mesa-dev] [Bug 75068] GL_COLOR not handled in GL_ARB_vertex_program MatrixMode() function

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75068 Kenneth Graunke changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [Bug 75068] New: GL_COLOR not handled in GL_ARB_vertex_program MatrixMode() function

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75068 Priority: medium Bug ID: 75068 Assignee: mesa-dev@lists.freedesktop.org Summary: GL_COLOR not handled in GL_ARB_vertex_program MatrixMode() function Severity: minor Class

[Mesa-dev] [Bug 74085] [Counter Strike: Source] Blue smoke in very specific places (nv50, r600g) (cannot bisect)

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74085 --- Comment #6 from Chris Forbes --- I've seen this in the linux client with: - NVA5 with the blob - Various r600g - Various intel I suspect it's not our bug. -- You are receiving this mail because: You are the assignee for the bug. _

Re: [Mesa-dev] [PATCHv2 1/3] omx: query driver encode capatibility earlier

2014-02-16 Thread Emil Velikov
On 16/02/14 15:52, Christian König wrote: > Am 16.02.2014 13:53, schrieb Emil Velikov: >> On 16/02/14 10:20, Christian König wrote: >>> Am 15.02.2014 20:35, schrieb Emil Velikov: Query of the driver support AVC_HIGH encode before reporting the total number of supported components. >>

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 Ian Romanick changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [Bug 75061] New: bug in clearing color buffer

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75061 Priority: medium Bug ID: 75061 Assignee: mesa-dev@lists.freedesktop.org Summary: bug in clearing color buffer Severity: normal Classification: Unclassified OS: All

Re: [Mesa-dev] [PATCHv2 1/3] omx: query driver encode capatibility earlier

2014-02-16 Thread Christian König
Am 16.02.2014 13:53, schrieb Emil Velikov: On 16/02/14 10:20, Christian König wrote: Am 15.02.2014 20:35, schrieb Emil Velikov: Query of the driver support AVC_HIGH encode before reporting the total number of supported components. v2: drop if (name_specific_length) check I considered this as

Re: [Mesa-dev] [PATCHv2 1/3] omx: query driver encode capatibility earlier

2014-02-16 Thread Emil Velikov
On 16/02/14 10:20, Christian König wrote: > Am 15.02.2014 20:35, schrieb Emil Velikov: >> Query of the driver support AVC_HIGH encode before reporting >> the total number of supported components. >> >> v2: drop if (name_specific_length) check > > I considered this as well, but as far as I understa

[Mesa-dev] [PATCHv3 1/3] omx: query driver encode capability at omx_component_library_Setup

2014-02-16 Thread Emil Velikov
... and report second component only when the driver supports h264 encode. v2: Drop if (name_specific_length) conditional. v3: Reword comment and commit message. Signed-off-by: Emil Velikov --- src/gallium/state_trackers/omx/entrypoint.c | 14 -- src/gallium/state_trackers/omx/vid_e

[Mesa-dev] [PATCHv2 3/3] omx: do not assume that everyone can do bitstream h264 and mpeg12

2014-02-16 Thread Emil Velikov
- Only report a component if there is a mpeg12/h264 decoder. - Advertise only the available formats. v2: - Return the number of truely available components. - Set name/role specific only for supported formats. - Cleanup vid_dec_LoaderComponent error path. Signed-off-by: Emil Velikov --- sr

[Mesa-dev] [PATCHv2 2/3] nouveau: advertise only supported video entrypoints

2014-02-16 Thread Emil Velikov
The nv84 code (vp2) - bitstream h264 - idct and bitstream mpeg12 Generic video (vpe2) - mc and idct mpeg12 v2: Drop extra brackets, assert on incorrect video format. Reviewed-by: Ilia Mirkin Signed-off-by: Emil Velikov --- src/gallium/drivers/nouveau/nouveau_video.c | 15 --

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 --- Comment #3 from celletus --- (In reply to comment #2) > Thanks for the report. > > Seems like a duplicate of Bug 74911, which should be resolved by this patch > http://patchwork.freedesktop.org/patch/20342/ > > I'm assuming that the patch w

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 --- Comment #2 from Emil Velikov --- Thanks for the report. Seems like a duplicate of Bug 74911, which should be resolved by this patch http://patchwork.freedesktop.org/patch/20342/ I'm assuming that the patch will be committed within a few day

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 celletus changed: What|Removed |Added Priority|medium |high -- You are receiving this mail because:

[Mesa-dev] [Bug 75048] Black screen in Dota 2,sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 --- Comment #1 from celletus --- I forget to add my sistem information. Processor Information: Vendor: GenuineIntel CPU Family: 0x6 CPU Model: 0xf CPU Stepping: 0xd CPU Type: 0x0 Speed: 2001 Mhz 2 logical process

[Mesa-dev] [Bug 75048] New: Black screen in Dota 2, sound works fine

2014-02-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75048 Priority: medium Bug ID: 75048 Assignee: mesa-dev@lists.freedesktop.org Summary: Black screen in Dota 2,sound works fine Severity: critical Classification: Unclassified OS: L

Re: [Mesa-dev] [PATCH] st/xvmc: fix tests so that they pass

2014-02-16 Thread Christian König
Am 16.02.2014 08:26, schrieb Ilia Mirkin: Signed-off-by: Ilia Mirkin Reviewed-by: Christian König --- Tom, any objections to enabling xvmc by default again? You turned it off in commit 6a19bb56e ("configure: Disable xvmc by default") complaining about the tests failing. These all pass for

Re: [Mesa-dev] [PATCHv2 1/3] omx: query driver encode capatibility earlier

2014-02-16 Thread Christian König
Am 15.02.2014 20:35, schrieb Emil Velikov: Query of the driver support AVC_HIGH encode before reporting the total number of supported components. v2: drop if (name_specific_length) check I considered this as well, but as far as I understand it that's not necessary correct. Have you checked