Re: wine gdiplus <-> mono gdiplus wrapper

2008-01-02 Thread Ove Kaaven
Dan Kegel skrev: > On Jan 2, 2008 2:57 PM, Reece Dunn <[EMAIL PROTECTED]> wrote: >> Are there any plans to use cairo in the Wine gdiplus implementation >> like mono does? > > Not that I know of. But I don't think that's a problem. > > I think a more interesting question is, when are we going to

TrackPopupMenu() and TPM_RECURSE

2008-01-02 Thread olympia
Hi, According to the MSDN documentation (see below), TrackPopupMenu() should only display multiple popupmenus if TPM_RECURSE is used. At the moment, Wine always seems to allow this and in some applications this results in very confusing menu overlaps. Moreover, the old popup menus will never be c

Re: wine gdiplus <-> mono gdiplus wrapper

2008-01-02 Thread Dan Kegel
On Jan 2, 2008 2:57 PM, Reece Dunn <[EMAIL PROTECTED]> wrote: > Are there any plans to use cairo in the Wine gdiplus implementation > like mono does? Not that I know of. But I don't think that's a problem. I think a more interesting question is, when are we going to buckle down and implement a D

Re: comdlg32: Remove unneeded casts (Resend)

2008-01-02 Thread Robert Shearman
Andrew Talbot wrote: >if (fodInfos->ofnInfos->Flags & OFN_ALLOWMULTISELECT) > size += 1; >/* return needed size in first two bytes of lpstrFile */ > - *(WORD *)fodInfos->ofnInfos->lpstrFile = size; > + *fodInfos->ofnInfos->lpstrFile = size; >

re: wine gdiplus <-> mono gdiplus wrapper

2008-01-02 Thread Dan Kegel
Jerome wrote: > I wrote a little script in order to wrap gdiplus with the mono one; > Here are the source file and the spec file (this one made with winedump), but > I have no idea how to compile it and/or include it in the wine source tree. > Could you tell me what you think about it ? And if it h

Re: Is there any reason why these patches were not applied to the git repository?

2008-01-02 Thread Alexandre Julliard
Rico Schüller <[EMAIL PROTECTED]> writes: > My patches from the 30/12/2007 haven't been applied, too. > > cabinet: Fix memory leak (found by Smatch) > mshtml: Fix memory leak (found by Smatch) > msi: Fix memory leak (found by Smatch) > > What's the reason? You sent the 3 patches in a single mail.

Re: [5/5] wined3d: change colorkey fixup for stage 0 alphaop / alphaarg

2008-01-02 Thread Alexander Dorofeyev
Stefan Dösinger wrote: Am Mittwoch, 2. Januar 2008 12:44:24 schrieb Stefan Dösinger: Am Mittwoch, 2. Januar 2008 13:38:57 schrieb Alexander Dorofeyev: In case of colorkey emulation for a texture, if the application wants to select alpha from diffuse color at stage 0, a fixup to modulate with te

Re: Is there any reason why these patches were not applied to the git repository?

2008-01-02 Thread Rico Schüller
Reece Dunn wrote: > I sent these patches to wine-patches, but they have not been applied. > > gdiplus: added the ProfileNotFound status > code. [0001-gdiplus-added-the-ProfileNotFound-status-code.patch] > 30/12/2007 > > ‎include: added the new Vista theme schema > headers. [0001-includ

Re: Norwegian language files using wrong locale

2008-01-02 Thread Ove Kaaven
Daniel Nylander skrev: > On ons, 2008-01-02 at 18:29 +0800, Dmitry Timoshkov wrote: >> "Daniel Nylander" <[EMAIL PROTECTED]> wrote: >> >>> I noticed that the Norwegian (bokmål) locale files are using the locale >>> "no". Correct locale for Norwegian Bokmål is "nb" (Nynorsk is "nn"). >> I don't see

Re: [5/5] wined3d: change colorkey fixup for stage 0 alphaop / alphaarg

2008-01-02 Thread Stefan Dösinger
Am Mittwoch, 2. Januar 2008 12:44:24 schrieb Stefan Dösinger: > Am Mittwoch, 2. Januar 2008 13:38:57 schrieb Alexander Dorofeyev: > > In case of colorkey emulation for a texture, if the application wants to > > select alpha from diffuse color at stage 0, a fixup to modulate with > > texture alpha m

Re: Pixel Shader Problem in 0.9.52

2008-01-02 Thread Stefan Dösinger
Am Mittwoch, 2. Januar 2008 00:04:30 schrieb László Tari: > Hi, > > Problem occurs when Depth Of Filed is turned on in Tomb Raider Anniversary. > > I simply overwrote the 0.9.52 wined3d.dll.so file with the 0.9.44 > wined3d.dll.so in /usr/lib/wine, it works, but a little bit slower. This doesn't lo

Re: #4 msvcrt: Correct search strategy for the wide exec/spawn functions.

2008-01-02 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > Changelog > Correct search strategy for the wide exec/spawn functions. I don't think we want to duplicate all that code. The Ascii functions should convert their arguments and call the Unicode ones. -- Alexandre Julliard [EMAIL PROTECTED]

Re: include: added the new Vista theme schema headers.

2008-01-02 Thread Alexandre Julliard
"Reece Dunn" <[EMAIL PROTECTED]> writes: > diff --git a/include/tmschema.h b/include/tmschema.h > index 910de19..3a3e3e3 100644 > --- a/include/tmschema.h > +++ b/include/tmschema.h > @@ -20,6 +20,10 @@ > #ifndef __WINE_TMSCHEMA_H > #define __WINE_TMSCHEMA_H > > +#if defined(__WINE_VSSYM32_H)

Re: Norwegian language files using wrong locale

2008-01-02 Thread Alexandre Julliard
Daniel Nylander <[EMAIL PROTECTED]> writes: > I did see them in the git tree. The files include "LANGUAGE > LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL" (which is correct) but what > happens when Norwegian Nynorsk (no_NN) is added? The filenames should be > changed according to ISO 639-1. But I could

Re: [2/5][try 2] ddraw/tests: add test for rendering vertices with zero rhw

2008-01-02 Thread Alexandre Julliard
Alexander Dorofeyev <[EMAIL PROTECTED]> writes: > Fixed some issues pointed out by Stefan Dösinger. > --- > dlls/ddraw/tests/visual.c | 41 + > 1 files changed, 41 insertions(+), 0 deletions(-) This is failing occasionally here: ../../../tools/run

Re: [5/5] wined3d: change colorkey fixup for stage 0 alphaop / alphaarg

2008-01-02 Thread Stefan Dösinger
Am Mittwoch, 2. Januar 2008 13:38:57 schrieb Alexander Dorofeyev: > In case of colorkey emulation for a texture, if the application wants to > select alpha from diffuse color at stage 0, a fixup to modulate with > texture alpha more closely matches what the application wants than fixup to > just se

Re: [3/5] ddraw/tests: add test for D3DRENDERSTATE_TEXTUREMAPBLEND state

2008-01-02 Thread Stefan Dösinger
Am Mittwoch, 2. Januar 2008 09:21:14 schrieb H. Verbeet: > On 02/01/2008, Alexander Dorofeyev <[EMAIL PROTECTED]> wrote: > > Tests of behavior introduced by patches 4/5 and 5/5. > > --- > > Going by the commit message, I assume this test would currently fail? > You can't do that. You either have to

RE: dlls/wintab32/context.c -- simpflication and HEADS UP!

2008-01-02 Thread Rolf Kalbermatter
Gerald Pfeifer wrote on Tuesday, January 01, 2008 6:03 PM: This code obviously was written with signed operands in mind. I wonder if they could get signed somewhere and this function simply uses the wrong datatype. > (I did not get _any_ response for my first mail a month ago > and I still belie

Re: Norwegian language files using wrong locale

2008-01-02 Thread Daniel Nylander
On ons, 2008-01-02 at 18:29 +0800, Dmitry Timoshkov wrote: > "Daniel Nylander" <[EMAIL PROTECTED]> wrote: > > > I noticed that the Norwegian (bokmål) locale files are using the locale > > "no". Correct locale for Norwegian Bokmål is "nb" (Nynorsk is "nn"). > > I don't see a lower cased "no" in dl

Re: Norwegian language files using wrong locale

2008-01-02 Thread Dmitry Timoshkov
"Daniel Nylander" <[EMAIL PROTECTED]> wrote: > I noticed that the Norwegian (bokmål) locale files are using the locale > "no". Correct locale for Norwegian Bokmål is "nb" (Nynorsk is "nn"). I don't see a lower cased "no" in dlls/kernel32/nls/nor.nls. Where did you notice that? Wine has the same d

Norwegian language files using wrong locale

2008-01-02 Thread Daniel Nylander
I noticed that the Norwegian (bokmål) locale files are using the locale "no". Correct locale for Norwegian Bokmål is "nb" (Nynorsk is "nn"). -- Daniel Nylander (CISSP, GCUX, GCFA) Stockholm, Sweden http://www.DanielNylander.se

Re: bugs audit volunteers required

2008-01-02 Thread Kai Blin
On Wednesday 02 January 2008 05:14:00 Dmitry Timoshkov wrote: > "Austin English" <[EMAIL PROTECTED]> wrote: > >> Also, marking bugs as having insufficient information to fix advises the > >> reporter that the project > >> needs more information to help or troubleshoot. > > > > Maybe add a resolutio

re: bugs audit volunteers require

2008-01-02 Thread Dan Kegel
>> Maybe add a resolution of NEEDMOREINFO? > >There is no need to add one more reason for a bug resolution IMHO, >INVALID with appropriate comment does the job. INVALID seems harsh, it may scare away novice reporters. Do we want to make it easy to search for bugs stuck in a needmoreinfo kind of s

Re: [3/5] ddraw/tests: add test for D3DRENDERSTATE_TEXTUREMAPBLEND state

2008-01-02 Thread H. Verbeet
On 02/01/2008, Alexander Dorofeyev <[EMAIL PROTECTED]> wrote: > Tests of behavior introduced by patches 4/5 and 5/5. > --- Going by the commit message, I assume this test would currently fail? You can't do that. You either have to send the patches that fix the problem first, or you have to wrap the