D3DXCreatePolygon

2011-10-24 Thread paulo lesgaz
Hello, any problem with my D3DXCreatePolygon patch? Thanks in advance. David

Re: riched20: do not return incorrect values from ME_CharFromPoint[Cursor]

2011-10-24 Thread Alexandre Julliard
Thomas Faber writes: > it is not a workaround. It is the current riched20 code that relies on the bug > being present (hence why it asserts on Windows). > The patch makes it work with a _correctly working_ version of > GetTextExtentExPointW (and also with the current one). > You could see it as a

Re: riched20: do not return incorrect values from ME_CharFromPoint[Cursor]

2011-10-24 Thread Thomas Faber
Hey, On 2011-10-24 20:03, Alexandre Julliard wrote: > Thomas Faber writes: > >> Windows's version of GetTextExtentExPointW, which is called in that function, >> returns a value of 1 in this case (Wine's does not, which would appear to be >> a bug), leading to the "i> control. >> The patch fixes

Re: riched20: explicitly cast WPARAM to character types

2011-10-24 Thread Thomas Faber
Hi Michael, On 2011-10-23 21:25, Michael Stefaniuc wrote: > On 10/22/2011 10:38 PM, Thomas Faber wrote: >> This makes the use of casts more consistent and shows the conversion >> from WPARAM to CHAR/WCHAR is intentional for WM_CHAR/EM_SETPASSWORDCHAR. >> Also fixes two MSVC warnings. > To make it

Re: riched20: do not return incorrect values from ME_CharFromPoint[Cursor]

2011-10-24 Thread Alexandre Julliard
Thomas Faber writes: > Windows's version of GetTextExtentExPointW, which is called in that function, > returns a value of 1 in this case (Wine's does not, which would appear to be > a bug), leading to the "i control. > The patch fixes riched20 to correctly handle either behavior by > adding a fas

Re: [PATCH 2/5] d3d9: Limit VS/PS reported version.

2011-10-24 Thread Henri Verbeet
On 24 October 2011 18:58, Matteo Bruni wrote: > +    if (pCaps->VertexShaderVersion > D3DVS_VERSION(3,0)) > +        pCaps->VertexShaderVersion = D3DVS_VERSION(3,0); > +    if (pCaps->PixelShaderVersion > D3DPS_VERSION(3,0)) > +        pCaps->PixelShaderVersion = D3DPS_VERSION(3,0); > + This shoul

Re: [PATCH 4/5] wined3d: Refuse to create a D3D10 wined3d device if it is not supported by the GPU.

2011-10-24 Thread Henri Verbeet
On 24 October 2011 18:58, Matteo Bruni wrote: > +        if (wined3d->dxVersion >= 10 && (shader_caps.VertexShaderVersion < > WINED3DVS_VERSION(4,0) > +                || shader_caps.PixelShaderVersion < WINED3DPS_VERSION(4,0))) This should probably be handled in dxgi_device_init().

Re: [PATCH 1/5] d3d8: Limit VS/PS reported version.

2011-10-24 Thread Henri Verbeet
On 24 October 2011 18:58, Matteo Bruni wrote: > +    if (pCaps->VertexShaderVersion > D3DVS_VERSION(1,1)) > +        pCaps->VertexShaderVersion = D3DVS_VERSION(1,1); > +    if (pCaps->PixelShaderVersion > D3DPS_VERSION(1,4)) > +        pCaps->PixelShaderVersion = D3DPS_VERSION(1,4); > + fixup_caps

Re: [PATCH 5/7] msxml3: Make positions returned by ISAXLocator compatible with msxml6

2011-10-24 Thread Nikolay Sivov
On 10/24/2011 14:55, Piotr Caban wrote: --- dlls/msxml3/factory.c |8 - dlls/msxml3/msxml_private.h |1 + dlls/msxml3/saxreader.c | 62 +++--- 3 files changed, 64 insertions(+), 7 deletions(-) static ClassFactory saxreadcf = { {&

Re: [1/2] d3dx9: Implemented non-equal declaration support in CloneMesh.

2011-10-24 Thread Matteo Bruni
2011/10/24 Michael Mc Donnell : > On Mon, Oct 24, 2011 at 9:13 AM, Matteo Bruni > wrote: >> Hi Michael, >> >> +    for (i = 0; declaration1[i].Stream != 0xff; i++) >> +    { >> +        if (memcmp(&declaration1[i], &declaration2[i], >> sizeof(*declaration1))) >> >> Doesn't that loop need to stop

Re: [1/2] d3dx9: Implemented non-equal declaration support in CloneMesh.

2011-10-24 Thread Michael Mc Donnell
On Mon, Oct 24, 2011 at 9:13 AM, Matteo Bruni wrote: > Hi Michael, > > +    for (i = 0; declaration1[i].Stream != 0xff; i++) > +    { > +        if (memcmp(&declaration1[i], &declaration2[i], > sizeof(*declaration1))) > > Doesn't that loop need to stop at the first end marker of either > declarat

Re: winealsa: 6 Channel Audio

2011-10-24 Thread Andrew Eikum
On Mon, Oct 24, 2011 at 06:26:18AM -0700, Chris Robinson wrote: > On Monday, October 24, 2011 8:08:58 AM Andrew Eikum wrote: > > On Sun, Oct 23, 2011 at 05:57:04PM -0700, Chris Robinson wrote: > > >A configuration option (in > > > winecfg/control panel) would be needed to se

Re: Patch resend etiquette

2011-10-24 Thread Erich Hoover
2011/10/23 Frédéric Delanoy > > On Sat, Oct 22, 2011 at 19:49, Austin English wrote: > > On Sat, Oct 22, 2011 at 10:48, Erich Hoover wrote: > >> How long should one wait to resend patches marked as "New" on the > >> patch list?  It seems that once they've gone "far enough" down on the > >> list

Re: winealsa: 6 Channel Audio

2011-10-24 Thread Chris Robinson
On Monday, October 24, 2011 8:08:58 AM Andrew Eikum wrote: > On Sun, Oct 23, 2011 at 05:57:04PM -0700, Chris Robinson wrote: > >A configuration option (in > > winecfg/control panel) would be needed to set it into a different mode. > > Windows has something similar to this fo

Re: [1/2] d3dx9: Implemented non-equal declaration support in CloneMesh.

2011-10-24 Thread Matteo Bruni
Hi Michael, +for (i = 0; declaration1[i].Stream != 0xff; i++) +{ +if (memcmp(&declaration1[i], &declaration2[i], sizeof(*declaration1))) Doesn't that loop need to stop at the first end marker of either declaration? I.e. may the first vertex declaration be longer than the second on

Re: winealsa: 6 Channel Audio

2011-10-24 Thread Andrew Eikum
On Sun, Oct 23, 2011 at 05:57:04PM -0700, Chris Robinson wrote: > On Sunday, October 23, 2011 8:28:45 PM Jonathan McCrohan wrote: > > Would someone with a better knowledge of Wine and/or ALSA be able to > > assist me in tracking down the source of this bug? > > Part of the problem is the way Wine

Re: vbscript: Fixed local variable count calculation

2011-10-24 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=15088 Your paranoid android