Re: posting advertisements

2007-05-10 Thread Mike Schaadt
On 5/10/07, Lei Zhang <[EMAIL PROTECTED]> wrote: On 5/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Check out this new 3D Instant Messenger called IMVU. It's the best I > > > have seen yet! > > > How much time it needs to be asked so that you stopped posting > advertisements? > > If

Re: [PATCH 2/3] winex11: Implement TINN algorithm. (try 3)

2007-05-09 Thread Mike Schaadt
An int value can be more precise then a float can, however a float can hold bigger numbers. It's the difference between having a 24 bit fraction with 8 bits of exponent and 1 of sign vs 31/32 bits of fraction data without exponent. Plus, integer operations are faster then floating point operatio

Question about OpenAL

2007-03-29 Thread Mike Schaadt
Is there any interest in adding OpenAL to Wine? I would imagine it's relatively simple to implement the OpenAL dll that would be a simple wrap around the Linux OpenAL library assuming they have the same functionality(from what I know of OpenAL, they should). It's not a very common library, but i

Re: const cleanup round 1

2007-03-13 Thread Mike Schaadt
tions. Should I resubmit without those? or should I put that off until I get a second round ready? On 3/13/07, Eric Pouech <[EMAIL PROTECTED]> wrote: Mike Schaadt a écrit : > string.c: > strtolW and strtoulW - constify the endptr value. This is just an > output value to i

const cleanup round 1(commentary on what I found)

2007-03-12 Thread Mike Schaadt
Some of this was included in the patch submission. Some of it I had questions about. spawn.c : warnings may or may not be harmless depending on if esecvp attempts to modify the results. Specs indicate it doesn't, but the function typing doesn't indicate so(the difference is 'const char * const

Question about OpenGL/D3D

2007-03-09 Thread Mike Schaadt
Has anyone tested using standard window objects in a window that also had an opengl/d3d context? I believe Terragen 2 is attempting to do this. If this hasn't been tested, than it might be the cause of all of the static that appears non opengl area, making the program nearly unusable. No messag

-Wcast-qual result

2007-03-08 Thread Mike Schaadt
I submited a patch today that modified unicode.h that disables warnings(which allows for -Wcast-qual to actually give relevant results) I don't know if it will be accepted or not(it has the potential of being problematic if modifying unicode.h that would normally result in a warning, but this pat