Re: Regression

2009-09-17 Thread Ben Klein
2009/9/18 chris ahrendt : > b5b58e423d32666581f69046c74bb19902c35c2b is first bad commit > commit b5b58e423d32666581f69046c74bb19902c35c2b > Author: Henri Verbeet > Date:   Thu Sep 17 12:35:24 2009 +0200 > >     d3d8: Add a separate function for cube texture initialization. > > :04 04 8cd1

Regression

2009-09-17 Thread chris ahrendt
b5b58e423d32666581f69046c74bb19902c35c2b is first bad commit commit b5b58e423d32666581f69046c74bb19902c35c2b Author: Henri Verbeet Date: Thu Sep 17 12:35:24 2009 +0200 d3d8: Add a separate function for cube texture initialization. :04 04 8cd1752ed711799ebfb77127de399d527add5415 9

apply context draw buffer

2009-09-17 Thread chris ahrendt
Something broke between yesterday's git tree and todays... went to run some applications and everything is slow as molasas... seems to be getting in a infinite loop in the apply context draw buffer

Re: glean and Piglit -- OpenGL driver testing

2009-09-17 Thread Austin English
On Thu, Sep 17, 2009 at 3:16 PM, Henri Verbeet wrote: > 2009/9/17 Saulius Krasuckas : > >> Then there is PerceptualDiff utility I found some time ago [3].  Guessed, >> could it also usefull for finding visual regressions of Wine?  Probably >> not, as it seems to be used for testing video codecs (b

Re: Add dxdiag help message box

2009-09-17 Thread Austin English
On Thu, Sep 17, 2009 at 6:34 AM, Henri Verbeet wrote: > 2009/9/17 Brian Nguyen : >> +/* Thread-safe function for converting to wide char strings at runtime */ >> +LPWSTR PrintWide(LPWSTR buf, size_t len, const char *s) >> +{ >> +    size_t i; >> +    for (i = 0; i < len && *s != '\0'; i++, s++) {

Re: glean and Piglit -- OpenGL driver testing

2009-09-17 Thread Saulius Krasuckas
* On Thu, 17 Sep 2009, Henri Verbeet wrote: > * 2009/9/17 Saulius Krasuckas : > > > > Could these be of any use for our graphic guys -- Stefan and co.? > > Well, they're mostly useful when you're maintaining an OpenGL driver. > Mesa already uses these. And what about seeing if our tests (vs Win

Re: glean and Piglit -- OpenGL driver testing

2009-09-17 Thread Henri Verbeet
2009/9/17 Saulius Krasuckas : > Today I saw two similar projects related to OpenGL: > > [1]: > >> glean is a suite of tools for evaluating the quality of an OpenGL >> implementation and diagnosing any problems that are discovered. glean >> also has the ability to compare two OpenGL implementations

glean and Piglit -- OpenGL driver testing

2009-09-17 Thread Saulius Krasuckas
Today I saw two similar projects related to OpenGL: [1]: > glean is a suite of tools for evaluating the quality of an OpenGL > implementation and diagnosing any problems that are discovered. glean > also has the ability to compare two OpenGL implementations and highlight > the differences betw

Re: [1/5] mapi32: Scan registry for MAPI providers and load them

2009-09-17 Thread Nikolay Sivov
Owen Rudge wrote: --- dlls/mapi32/Makefile.in |2 +- dlls/mapi32/mapi32_main.c |5 +- dlls/mapi32/util.c| 148 + dlls/mapi32/util.h| 28 + 4 files changed, 181 insertions(+), 2 deletions(-) create mode 100644 dll

please test inconsistent WAVEFORMAT on MS-Windows (compiler needed)

2009-09-17 Thread Joerg-Cyril.Hoehle
Hi, One MS-Windows machine passes all the attached tests, proving that MS-Windows ignores nBlockAlign and nAvgBytesPerSec. It would be helpful to get confirmation from more machines. Please build with the attached patch, execute it in interactive mode set WINETEST_INTERACTIVE=1 winetest.exe wave

Re: Add dxdiag help message box

2009-09-17 Thread Henri Verbeet
2009/9/17 Brian Nguyen : > +/* Thread-safe function for converting to wide char strings at runtime */ > +LPWSTR PrintWide(LPWSTR buf, size_t len, const char *s) > +{ > +size_t i; > +for (i = 0; i < len && *s != '\0'; i++, s++) { > +buf[i] = *s; > +} > +return buf; > +} That

Re: winetest: Add the ability to retrieve the dll path for com dlls from the registry.

2009-09-17 Thread Paul Vriens
On 09/17/2009 11:39 AM, Huw Davies wrote: Paul Vriens wrote: The attached patch fixes the issue. We are using LOAD_LIBRARY_AS_DATAFILE as we don't really want to load the dll but we need some info from it. The problem is that GetModuleFileName can't cope with LOAD_LIBRARY_AS_DATAFILE loaded dll

Re: winetest: Add the ability to retrieve the dll path for com dlls from the registry.

2009-09-17 Thread Huw Davies
Paul Vriens wrote: The attached patch fixes the issue. We are using LOAD_LIBRARY_AS_DATAFILE as we don't really want to load the dll but we need some info from it. The problem is that GetModuleFileName can't cope with LOAD_LIBRARY_AS_DATAFILE loaded dlls. So will using LoadLibrary introduce

Re: winetest: Add the ability to retrieve the dll path for com dlls from the registry.

2009-09-17 Thread Paul Vriens
On 09/17/2009 08:13 AM, Paul Vriens wrote: On 09/14/2009 03:10 PM, Huw Davies wrote: --- programs/winetest/main.c | 87 ++--- 1 files changed, 73 insertions(+), 14 deletions(-) Hi

Re: user32: Skip STM_SETIMAGE message if the static control style doesnot match

2009-09-17 Thread Dmitry Timoshkov
"Ilya Shpigor" wrote: This style checking is needed to the STM_SETIMAGE message processing according to MSDN: http://msdn.microsoft.com/en-us/library/bb760782%28VS.85%29.aspx This change requires a test case. -- Dmitry.