Re: user32/tests: SetWindowPos() propagates update region from WS_CLIPCHILDREN child to its children (try 3).

2013-03-06 Thread Sergey Guralnik
On 2013-03-04 10:39, Sergey Guralnik wrote: This patch demonstrates the most interest case from previous versions. When SetWindowPos() moves child window, that has some invalid area, it also invalidates children of this window according to its update region, even if moved window has WS_CLIPCHILD

Re: d3dx9 [patch 1/2, try 3]: Implement D3DXSHEvalConeLight

2013-03-06 Thread Nozomi Kodama
hello Still problems with this patch? Nozomi.

Re: [PATCH 1/7] winemac: Implement OpenGL support.

2013-03-06 Thread Ken Thomases
On Mar 6, 2013, at 1:58 PM, C.W. Betts wrote: > It seems like there's conflicting types for GLhandleARB, one defined by Wine, > the other by OS X, on Mountain Lion. I assume that the #define __gl_h_ is a > try to work around the issue, but OS X's gltypes.h still gets included. Ugh. Thanks for

Re: [PATCH 1/7] winemac: Implement OpenGL support.

2013-03-06 Thread C.W. Betts
It seems like there's conflicting types for GLhandleARB, one defined by Wine, the other by OS X, on Mountain Lion. I assume that the #define __gl_h_ is a try to work around the issue, but OS X's gltypes.h still gets included. On Mar 6, 2013, at 3:59 AM, Ken Thomases wrote: > --- > dlls/winemac.

Re: ntdll: make NtDelayExecution a bit more efficient

2013-03-06 Thread Michael Stefaniuc
On 03/06/2013 07:10 PM, Graham wrote: > Alexandre wrote: >> That's what the existing code already does. > > Indeed. I don't know what I was thinking... > >>> 2. If you're about to block on select(), then I don't see any point in >>> preceding that with a call to sched_yield(). >> >> This was adde

Re: ntdll: make NtDelayExecution a bit more efficient

2013-03-06 Thread Graham
Alexandre wrote: > That's what the existing code already does. Indeed. I don't know what I was thinking... >> 2. If you're about to block on select(), then I don't see any point in >> preceding that with a call to sched_yield(). > > This was added for a reason; most likely you'll have to write te

Re: Use accented letters in their names.

2013-03-06 Thread Frédéric Delanoy
> On 3/4/13, Frédéric Delanoy wrote: >> On Fri, Mar 1, 2013 at 5:01 PM, Tae Wong wrote: >>> The authors file is outdated and you want this updated with the >>> missing authors. Andrej Znidarsic should have Slovenian accented >>> letters for his last name. >>> >>> On 2/4/13, Tae Wong wrote:

Re: [1/3] Make mac driver the default on OS X

2013-03-06 Thread Ken Thomases
On Mar 6, 2013, at 8:24 AM, wrote: > Bug report: > Toying around with built-in notepad, clock, winhlp32, I noticed that > notepad and winhlp32 are not resizable, whereas the system > preferences "control" is. By comparison, with the x11 driver, > notepad's window is resizable even though it ha

ntdll: make NtDelayExecution a bit more efficient

2013-03-06 Thread Joerg-Cyril.Hoehle
You may try and find that MSDN or blog page where people explain the subtle differences of Sleep(0) and Sleep(1) on multi-core machines. Regards, Jörg Höhle

[1/3] Make mac driver the default on OS X

2013-03-06 Thread Joerg-Cyril.Hoehle
Hi, Ken Thomases wrote: >I think that the Mac driver should not be made the default >until OpenGL and clipboard support are in. Exactly :-( Following Josh DuBois explanation about HKCU/Software/Wine/Drivers "Graphics"="mac,x11" I decided to give it a try over the week-end and was very disappointe

Re: [1/3] Make mac driver the default on OS X

2013-03-06 Thread Josh DuBois
On 3/6/13 12:24 AM, Ken Thomases wrote: As I believe you're aware, I think that the Mac driver should not be made the default until OpenGL and clipboard support are in. So, maybe this was just submitted in preparation for that time, but there should probably have been a note to that effect. S

Re: winegcc: Add support for -Ttext-segment linker flag to set image base of a dll. (try 2)

2013-03-06 Thread Alexandre Julliard
Alexandre Julliard writes: > Tijl Coosemans writes: > >> On 03-03-2013 17:44, André Hentschel wrote: >>> You would rather call it PLATFORM_FREEBSD >> >> Well, the flag isn't FreeBSD specific. It works on all ELF targets >> (including Linux which then wouldn't need prelink). > > Then it should be

Re: winegcc: Add support for -Ttext-segment linker flag to set image base of a dll. (try 2)

2013-03-06 Thread Alexandre Julliard
Tijl Coosemans writes: > On 03-03-2013 17:44, André Hentschel wrote: >> You would rather call it PLATFORM_FREEBSD > > Well, the flag isn't FreeBSD specific. It works on all ELF targets > (including Linux which then wouldn't need prelink). Then it should be used by default, and you don't need to

Re: ntdll: make NtDelayExecution a bit more efficient

2013-03-06 Thread Alexandre Julliard
Graham writes: > This patch is vaguely related to bug 24558. It eliminates a few > syscalls in NtDelayExecution: > > 1. If the caller requests a zero-wait yield, then do just that, and > nothing more. That's what the existing code already does. > 2. If you're about to block on select(), then I

Re: qcap: Fix compilation on systems that have v4l1 but not VIDIOCMCAPTURE & co.

2013-03-06 Thread Alexandre Julliard
Francois Gouget writes: > In particular this fixes compilation on FreeBSD 8.1. > > configure | 74 > +++ > configure.ac| 18 + > dlls/qcap/v4l.c |4 +-- > include/config.h.in |3 +++ > 4 files changed,