Re: winspool.drv: Add stubs for IsValidDevmodeW and IsValidDevmodeA.

2011-05-08 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=10796 Your paranoid android

Re: ddraw: Add tests for SetCooperativeLevel

2011-05-08 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=10792 Your paranoid android

Re: [4/5] d3dx9: Implement D3DXMESHOPT_ATTRSORT vertex reordering.

2011-05-08 Thread Matteo Bruni
2011/5/8 Dylan Smith : > On Sun, May 8, 2011 at 3:18 PM, Matteo Bruni > wrote: >> >> 2011/5/6 Dylan Smith : >> > +struct vertex_attrib_duplication { >> > +    DWORD attrib; >> > +    DWORD vertex_index; >> > +    struct vertex_attrib_duplication *ptr; >> > +}; >> ... >> > +            struct verte

Re: [4/5] d3dx9: Implement D3DXMESHOPT_ATTRSORT vertex reordering.

2011-05-08 Thread Dylan Smith
On Sun, May 8, 2011 at 3:18 PM, Matteo Bruni wrote: > 2011/5/6 Dylan Smith : > > +struct vertex_attrib_duplication { > > +DWORD attrib; > > +DWORD vertex_index; > > +struct vertex_attrib_duplication *ptr; > > +}; > ... > > +struct vertex_attrib_duplication **heads = NULL; /

Re: [2/5] d3dx9: Implement D3DXMESHOPT_COMPACT for ID3DXMesh::OptimizeInplace.

2011-05-08 Thread Dylan Smith
On Sun, May 8, 2011 at 3:17 PM, Matteo Bruni wrote: > 2011/5/6 Dylan Smith : > > ... > > +new_vertex_buffer_size = This->numvertices; > ... > > +new_vertex_buffer_size *= vertex_size; > > +hr = IDirect3DDevice9_CreateVertexBuffer(This->device, > new_vertex_buffer_size, > >

Re: [4/5] d3dx9: Implement D3DXMESHOPT_ATTRSORT vertex reordering.

2011-05-08 Thread Matteo Bruni
2011/5/6 Dylan Smith : > +struct vertex_attrib_duplication { > +    DWORD attrib; > +    DWORD vertex_index; > +    struct vertex_attrib_duplication *ptr; > +}; ... > +            struct vertex_attrib_duplication **heads = NULL; /* head of list > for each vertex */ You probably want to use Wine l

Re: [2/5] d3dx9: Implement D3DXMESHOPT_COMPACT for ID3DXMesh::OptimizeInplace.

2011-05-08 Thread Matteo Bruni
2011/5/6 Dylan Smith : ... > +        new_vertex_buffer_size = This->numvertices; ... > +        new_vertex_buffer_size *= vertex_size; > +        hr = IDirect3DDevice9_CreateVertexBuffer(This->device, > new_vertex_buffer_size, > +                vertex_desc.Usage, This->fvf, vertex_desc.Pool, >

Re: [1/5] d3dx9: Implement ID3DXMesh::CloneMesh without vertex buffer conversion.

2011-05-08 Thread Matteo Bruni
2011/5/6 Dylan Smith : > --- Just a couple of nitpicks: > +        This->vertex_buffer->lpVtbl->AddRef(This->vertex_buffer); You should probably use the macros where they are around (D3D9 objects have them, as opposed to the mesh objects which don't for some strange reason). > +        CopyMemo

Re: GSoC-2011: Implement Missing Mesh Functions in Wine’s D3DX9

2011-05-08 Thread Michael Mc Donnell
My plans have changed a bit to avoid duplication of work. The updated plan is: Before May 23: * Read up on DirectX in general Week 1-3 (May 23rd-June 10th): * Implement test for UpdateSemantics function * Implement UpdateSemantics function Week 4-6 (June 13th-July 1st): * Implement test for

Re: tools: Upgrade the config.guess/config.sub scripts

2011-05-08 Thread Austin English
2011/5/7 André Hentschel : > from git://git.sv.gnu.org/config.git without the whitespace changes > --- >  tools/config.guess |   17 ++--- >  tools/config.sub   |   49 +++-- >  2 files changed, 45 insertions(+), 21 deletions(-) > > diff --git a

Re: riched20:tests Add conformance test for EM_FINDWORDBREAK function.

2011-05-08 Thread James McKenzie
On 5/8/11 3:18 AM, André Hentschel wrote: Am 08.05.2011 05:14, schrieb James McKenzie: + if (winetest_debug> 1) { test_WM_CHAR(); test_EM_FINDTEXT(); test_EM_GETLINE(); @@ -7090,6 +7368,8 @@ START_TEST( editor ) test_WM_GETDLGCODE(); test_zoom(); test_dialogmode(); +

Re: [1/2] mmsystem.dll16: fix MCI_STATUS mapping for digitalvideo

2011-05-08 Thread Damjan Jovanovic
On Fri, May 6, 2011 at 6:23 PM, wrote: > Damjan, > > @@ -407,6 +441,20 @@ static  MMSYSTEM_MapType   MCI_UnMapMsg16To32W(WORD > wMsg, DWORD dwFlags, DWORD_PTR > +            mdsp16->dwCallback = mdsp32w->dwCallback; > +            mdsp16->dwItem = mdsp32w->dwItem; > +            mdsp16->dwTrack

Re: ntdll: Make RtlReAllocateHeap() preserve V-bit information when run under Valgrind

2011-05-08 Thread Marcus Meissner
On Sat, May 07, 2011 at 06:33:08PM +0200, Bart Van Assche wrote: > Hello, > > A patch I submitted about five weeks ago had the status "Pending" on the > patch status page during about four weeks. I can't see this patch anymore on > the patch status page today. Anyone who can tell me what happene

Re: RFC: doc for message contexts additions in PO files

2011-05-08 Thread André Hentschel
Am 24.04.2011 11:03, schrieb Frédéric Delanoy: > Hi guys, > > I've put together the following doc for the introduction of message > contexts. It's still a bit raw but I'd improve it for the wiki > version. I'd say just put it on the wiki and we'll see what happens. It's better than getting forgot

Re: riched20:tests Add conformance test for EM_FINDWORDBREAK function.

2011-05-08 Thread André Hentschel
Am 08.05.2011 05:14, schrieb James McKenzie: > > + if (winetest_debug > 1) { >test_WM_CHAR(); >test_EM_FINDTEXT(); >test_EM_GETLINE(); > @@ -7090,6 +7368,8 @@ START_TEST( editor ) >test_WM_GETDLGCODE(); >test_zoom(); >test_dialogmode(); > + } > + test_EM_FINDWORDBREAK()

Re: gdi32: Remove a set but unused variable

2011-05-08 Thread Gerald Pfeifer
I admit I am surprised that Commit: 46988651d91fbea7f611287e5d8320239e72108d URL: http://source.winehq.org/git/wine.git/?a=commit;h=46988651d91fbea7f611287e5d8320239e72108d Author: Nicolas Le Cam Date: Fri Apr 29 23:57:09 2011 +0200 gdi32: Remove a set but unused variable. has

Re: wineoss.drv: Add mmdevapi driver.

2011-05-08 Thread Gerald Pfeifer
On Fri, 6 May 2011, Andrew Eikum wrote: > If Wine is trying to build wineoss.drv, then you must have oss_sysinfo. > If you have oss_sysinfo, then you have OSSv4. If you have OSSv4, then > you should have all of the above symbols, but apparently you don't. So I > suspect it's something amiss with