>>2012/6/12 Nozomi Kodama :
>>
>> + if ( (pq->w >= 1.0f) || (pq->w == -1.0f) )
>
>I think the second comparison should be '<=', if you want to avoid getting
>NaNs.
I checked in Vista. D3DX accepts -1.0f as input and returns what the patch
does.
However, any value < -1.0f is a unacceptable
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=18988
Your paranoid android
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=18989
Your paranoid android
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=18987
Your paranoid android
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=18986
Your paranoid android
Is there a reason why Portuguese is misspelt in these two places?
diff --git a/dlls/msvcrt/locale.c b/dlls/msvcrt/locale.c
index 97b82ec..b26a9c8 100644
--- a/dlls/msvcrt/locale.c
+++ b/dlls/msvcrt/locale.c
@@ -85,7 +85,7 @@ static const char * const _country_synonyms[] =
"german-swiss", "d
msgid "KeyID="
-msgstr "Код ключа="
+msgstr "Код ключа: "
[...]
msgid "Other Name="
-msgstr "Другое имя="
+msgstr "Альтернативное имя: "
and many more like this.
Why did you not fix this?
Replacing the equal sign with a colon looks wrong to me but then I
don't speak Russian. Still I have not
2012/6/12 Nozomi Kodama :
>
> +if ( (pq->w >= 1.0f) || (pq->w == -1.0f) )
I think the second comparison should be '<=', if you want to avoid getting NaNs.
On 12/06/2012 8:59 PM, John Emmas wrote:
> Thanks Hin-Tak and Dan but I think we're at crossed purposes now.
> Remember that my original question had nothing to do with paths. I
> simply used paths as a convenient example. My question is about
> command-line parameters and (more specifically) abou
--- On Tue, 12/6/12, John Emmas wrote:
> Thanks Hin-Tak and Dan but I think we're at crossed purposes
> now. Remember that my original question had nothing to
> do with paths. I simply used paths as a convenient
> example. My question is about command-line parameters
> and (more specifically)
On Tue, Jun 12, 2012 at 2:07 AM, Jacek Caban wrote:
> ...
> You didn't address most of my comments. Feel free to ask for
> clarifications if something was not clear enough.
I'm really sorry about that, for some reason gmail hid them as a quote.
Erich
Am Dienstag, 12. Juni 2012, 17:03:49 schrieb Henri Verbeet:
> +if (state->vertex_shader->reg_maps.input_registers & (1 << i))
> +GL_EXTCALL(glVertexAttrib4fARB(i, 0.0f, 0.0f, 0.0f, 0.0f));
Does an application need this? Afair Windows drivers have implementation-
specific
On 12/06/2012 8:59 PM, John Emmas wrote:
> Thanks Hin-Tak and Dan but I think we're at crossed purposes now.
> Remember that my original question had nothing to do with paths. I
> simply used paths as a convenient example. My question is about
> command-line parameters and (more specifically) about
Den 12-06-2012 13:21, Nikolay Sivov skrev:
> On 6/12/2012 11:55, Ulrik Dickow wrote:
>> Patch 2 of 2 from http://bugs.winehq.org/show_bug.cgi?id=26226 .
>>
>>
>>
>
>> +/* Emit appropriate fixme or warning in case of unsupported or invalid
>> namespace.
>> + * The W3C spec would like us to
On 7 Jun 2012, at 21:43, Hin-Tak Leung wrote:
> --- On Thu, 7/6/12, Dan Kegel wrote:
>
>>
>> Example:
>>wine notepad /home/dank/foo.txt
>> This fails because notepad treats / as the beginning of an
>> option (see http://source.winehq.org/source/programs/notepad/main.c#L616
>> ).
>>
>> So,
André Hentschel writes:
> Inspired by Matias Colli, see bug 17896.
> I made sure it doesn't hurt on other OS and send it because it doesn't seem
> he will do it and it's a oneliner.
It doesn't work for me on Debian testing, not without manually creating
symlinks for the libs that cups-config re
On 6/12/2012 13:33, Ulrik Dickow wrote:
Den 12-06-2012 13:11, Nikolay Sivov skrev:
On 6/12/2012 11:52, Ulrik Dickow wrote:
+/* create on element and try to alter namespace after that */
+doc = (doc_version == 0 ?
+ create_document(&IID_IXMLDOMDocument) :
+ create_do
Den 12-06-2012 13:11, Nikolay Sivov skrev:
> On 6/12/2012 11:52, Ulrik Dickow wrote:
>> +/* create on element and try to alter namespace after that */
>> +doc = (doc_version == 0 ?
>> + create_document(&IID_IXMLDOMDocument) :
>> + create_document_version(60, &IID_IXMLDOM
On 6/12/2012 11:55, Ulrik Dickow wrote:
Patch 2 of 2 from http://bugs.winehq.org/show_bug.cgi?id=26226 .
+/* Emit appropriate fixme or warning in case of unsupported or invalid
namespace.
+ * The W3C spec would like us to exit earlier for attempts to redefine the
namespace for
+
On 6/12/2012 11:52, Ulrik Dickow wrote:
Patch 1 of 2 from http://bugs.winehq.org/show_bug.cgi?id=26226 .
+static void test_namespaces_change(int doc_version)
+{
+IXMLDOMDocument *doc;
+IXMLDOMElement *elem;
+IXMLDOMNode *node;
+
+VARIANT var;
+HRESULT hr;
+BSTR str;
Detlef Riekenberg writes:
> @@ -88,22 +92,25 @@ static void test_PSetupDestroyMonitorInfo(VOID)
> {
> HANDLE mi;
>
> -
> SetLastError(0xdeadbeef);
> pPSetupDestroyMonitorInfo(NULL);
> -/* lasterror is returned */
> -trace("returned with %u\n", GetLastError());
> +/*
Hi Erich,
On 06/11/12 21:01, Erich E. Hoover wrote:
> Real Name:
> Erich Hoover
>
> Description:
> This patch adds the ability in HTML Help to convert HTML encoded
> characters (e.g. ê) into the Unicode character equivalent. This
> feature is needed by the table of contents and the index
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=18972
Your paranoid android
23 matches
Mail list logo