Re: d3dx9 [patch 1/3]: Avoid two useless computations

2013-04-07 Thread Frédéric Delanoy
On Fri, Apr 5, 2013 at 9:41 AM, Rico Schüller wrote: > On 05.04.2013 09:13, Nozomi Kodama wrote: > >> s = 0.75f; >> -if ( order > 2 ) >> -s += 5.0f / 16.0f; >> -if ( order > 4 ) >> -s -= 3.0f / 32.0f; >> +if (order > 2) >> +s = 1.0625f; >> +if (order

Re: wbemprox: Implement some properties of Win32_ComputerSystem and Win32_DiskPartition.

2013-04-07 Thread Nikolay Sivov
Please use your real name. On Sun, Apr 7, 2013 at 7:46 PM, mog422 wrote: > > > > >

Re: Fresh WineWiki Theme, Straight from the Farm

2013-04-07 Thread André Hentschel
Am 07.04.2013 03:59, schrieb Kyle Auble: > On Sat, Apr 6, 2013 at 5:14 PM, Dimi Paun wrote: > >> I've actually deployed your theme to production already: >> http://wiki.winehq.org > Oh, cool! > > Don't worry about taking time to reply, I know > when people are busy it's good to follow up just >

Re: 64bit winelib test app fails on AMD CPU, but works on Intel - need help to identify possible problem, please :)

2013-04-07 Thread Marcus Meissner
Hi, Well, your testcase had a trivial mistake which i now see. This line: typedef struct AEffect * (*main_entry_t)(audioMasterCallback); must read: typedef struct WINAPI AEffect * (*main_entry_t)(audioMasterCallback); WINAPI is critical here, as it changes the call from the SysV AMD64 calling