Re: [PATCH 2/2] wined3d: Prevent console spamming in drawPrimitive.

2008-04-18 Thread H. Verbeet
On 19/04/2008, Stefan Dösinger <[EMAIL PROTECTED]> wrote: > Am Samstag, 19. April 2008 02:36:39 schrieb H. Verbeet: > > > On 18/04/2008, Alexander Dorofeyev <[EMAIL PROTECTED]> wrote: > > > Fixes massive slowdown in games like Aliens vs Predator 2. > > > > If you care about performance you shoul

Re: [PATCH 2/2] wined3d: Prevent console spamming in drawPrimitive.

2008-04-18 Thread Stefan Dösinger
Am Samstag, 19. April 2008 02:36:39 schrieb H. Verbeet: > On 18/04/2008, Alexander Dorofeyev <[EMAIL PROTECTED]> wrote: > > Fixes massive slowdown in games like Aliens vs Predator 2. > > If you care about performance you should always run with > WINEDEBUG="-all" anyway. I think it is valid to preve

Re: [PATCH] user32: Handle VK_RETURN KeyDown events more properly in EDITcontrols.

2008-04-18 Thread Dmitry Timoshkov
"El." <[EMAIL PROTECTED]> wrote: > @@ -4606,6 +4606,10 @@ static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key) > { >HWND hwndParent = GetParent(es->hwndSelf); >DWORD dw = SendMessageW( hwndParent, DM_GETDEFID, 0, 0 ); > + > + if (GetClassLongW(hwndParent, GCW_ATOM) != WC_DIALOG) >

Re: [PATCH 2/2] wined3d: Prevent console spamming in drawPrimitive.

2008-04-18 Thread H. Verbeet
On 18/04/2008, Alexander Dorofeyev <[EMAIL PROTECTED]> wrote: > Fixes massive slowdown in games like Aliens vs Predator 2. > If you care about performance you should always run with WINEDEBUG="-all" anyway.

Re: Wine release 0.9.60

2008-04-18 Thread Adrian Bunk
On Fri, Apr 18, 2008 at 07:46:51PM +0200, Alexandre Julliard wrote: > Adrian Bunk <[EMAIL PROTECTED]> writes: > > > That this bug is listed as "fixed since 0.9.59" is wrong, and it sounds > > as if you wrongly count all bugs closed since 0.9.59 as having been > > present in 0.9.59? > > > > Looki

Hack: Debug a specific critical section WINE_DEBUG_SPINLOCK

2008-04-18 Thread Maarten Lankhorst
Hi all, I created a hack to debug a specific critical section with WINE_DEBUG_SPINLOCK environment. It was useful for me because it found a very weird deadlock, a thread would terminate before releasing its critical section. It will also change the timeout to 1 second so you will get a faster resp

Re: Wine release 0.9.60

2008-04-18 Thread Alexandre Julliard
Adrian Bunk <[EMAIL PROTECTED]> writes: > I might be a bit nitpicking, but "Bugs fixed since 0.9.59" implies for > me that these bugs have been fixed after 0.9.59. I can certainly change it to "Bugs fixed in 0.9.60" if you prefer that. > And when I'm reading the 0.9.60 announcement I'm mostly

RE: Trouble in compiling Wine 0.9.57 and 0.9.58 on Solaris 10 08/07

2008-04-18 Thread Rolf Kalbermatter
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] wrote: > What about defining isinf as macro? > > diff --git a/include/wine/port.h b/include/wine/port.h index > 6727891..59c12aa 100644 > --- a/include/wine/port.h > +++ b/include/wine/port.h > @@ -146,6 +146,11 @@ struct statvfs > #define strtoull _

Re: Wine release 0.9.60

2008-04-18 Thread Alexandre Julliard
Adrian Bunk <[EMAIL PROTECTED]> writes: > That this bug is listed as "fixed since 0.9.59" is wrong, and it sounds > as if you wrongly count all bugs closed since 0.9.59 as having been > present in 0.9.59? > > Looking through some of the other bugs (especially older ones) the > information in Bu

Re: Wine release 0.9.60

2008-04-18 Thread Adrian Bunk
On Fri, Apr 18, 2008 at 05:59:16PM +0200, Alexandre Julliard wrote: >... > Bugs fixed since 0.9.59: >... >7174 Master of Orion 2 does not switch screen resolution correctly >... That this bug is listed as "fixed since 0.9.59" is wrong, and it sounds as if you wrongly count all bugs closed si

Re: d3dx9_36: Add stubs and implementations for D3DXCreateTexturexx

2008-04-18 Thread tony . wasserka
> I have a hacky implementation of D3DXLoadSurfaceFromMemory and > D3DXLoadSurfaceFromSurface, as well as a pretty good implementation of > D3DXCreateTexture and D3DXCheckTextureRequirements. > > I'll send in the patch for the last two when I have time, and have > looked it over a final time.

New winetricks 20080418: add wmp10, windows codecs, accept new flash version

2008-04-18 Thread Dan Kegel
Another day, another Winetricks. Changes since yesterday's annoucement: Switch to listing simpler synonyms for changing windows version (long ones still valid) Correct description of volnum verb (it's still needed) Fix typo in sha1sum check that caused it to be ignored! Update sha1sum for flas

Re: winmm/tests: waveOutGetDevCaps called with invalid size

2008-04-18 Thread Robert Reif
Peter Åstrand wrote: > Changelog: > > Calling waveOutGetDevCapsA/waveOutGetDevCapsW with size 4 is wrong, the > size should be the sizeof the structure used. waveOutGetDevCapsA needs to > succeed since the capsA structure is used later. > > Index: wave.c > ===

Re: user32:mdi.c Fix creating MDI child window according with test.

2008-04-18 Thread Anatoly Lyutin
Dmitry Timoshkov wrote: > > SWP_NOZORDER should be there for sure, and in that case HWND_TOP > doesn't make > sense, so just use 0 (although HWND_TOP == 0) instead. > Yes, You are right. I have sent a new version. -- Best regards Anatoly Lyutin.

Re: user32:mdi.c Fix creating MDI child window according with test.

2008-04-18 Thread Dmitry Timoshkov
"Anatoly Lyutin" <[EMAIL PROTECTED]> wrote: > --- dlls/user32/mdi.c 5 Mar 2008 19:42:23 - 1.24 > +++ dlls/user32/mdi.c 18 Apr 2008 12:07:50 - > @@ -649,6 +728,9 @@ static LONG MDI_ChildActivate( HWND clie > } > > SendMessageW( child, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)

Re: Trouble in compiling Wine 0.9.57 and 0.9.58 on Solaris 10 08/07

2008-04-18 Thread Petr Sumbera
Alexandre Julliard wrote: > Petr Sumbera <[EMAIL PROTECTED]> writes: > >> Well, we have only one isinf call in Wine so I think it isn't worst of >> creating Wine special isinf implementation. Instead I propose emulate >> isinf via finite() and isnand() (both coming from ieeefp.h). > > You should

Re: shell32: implement SHGetFolderPathAndSubDirA/W [try2][resend]

2008-04-18 Thread Stefan Leichter
Alexandre Julliard schrieb: > Stefan Leichter <[EMAIL PROTECTED]> writes: > >> @@ -1758,7 +1836,7 @@ >> */ >> if (!(nFolder & CSIDL_FLAG_CREATE)) >> { >> -hr = HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND); >> +hr = HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND); >> g

Re: wininet: correct the case where Content-Length is set as well as Transer-Encoding = chunked

2008-04-18 Thread Aric Stewart
Here is the download where i see the behavior is where I see the behavior. http://site.ebrary.com/lib/stanford/support/plugins/ebraryReader.exe thanks, -aric Hans Leidekker wrote: > On Thursday 17 April 2008 21:28:57 Aric Stewart wrote: > >> This patch is for the receiving direction, unless I m

Re: shell32: implement SHGetFolderPathAndSubDirA/W [try2][resend]

2008-04-18 Thread Alexandre Julliard
Stefan Leichter <[EMAIL PROTECTED]> writes: > @@ -1758,7 +1836,7 @@ > */ > if (!(nFolder & CSIDL_FLAG_CREATE)) > { > -hr = HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND); > +hr = HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND); > goto end; Why is it using a different e

Re: Strange waveOutGetDevCaps calls in winmm/tests/wave.c

2008-04-18 Thread Peter Åstrand
On Wed, 16 Apr 2008, Juan Lang wrote: > > The CapsA test doesn't fail, probably since winmm wraps CapsA calls with > > CapsW calls and then does memcpy. In either case, calling > > waveOutGetDevCaps sith size=4 is not valid, as far as I can tell. > > Theoretically, it might be in the future, t

Re: wininet: improve stub for FindNextUrlCacheEntryW a tiny bit

2008-04-18 Thread Dmitry Timoshkov
"Louis. Lenders" <[EMAIL PROTECTED]> wrote: > @@ -3113,6 +3113,7 @@ BOOL WINAPI FindNextUrlCacheEntryW( >LPDWORD lpdwNextCacheEntryInfoBufferSize > ) > { > +SetLastError(ERROR_CALL_NOT_IMPLEMENTED); > FIXME("(%p, %p, %p) stub\n", hEnumHandle, lpNextCacheEntryInfo, > lpdwNextCacheEn