Please bottom post on wine-devel. Thanks.
2009/6/3 MD.IMAM HOSSAIN :
> I have tested Hitman X games to Intel graphics card And Prince of
> Persia X games to nVidia graphics card.
>
> I confirm Hitman X games have no problems with WINE 1.1.11 on Intel
> graphics card.
Does the problem first appear
I have tested Hitman X games to Intel graphics card And Prince of
Persia X games to nVidia graphics card.
I confirm Hitman X games have no problems with WINE 1.1.11 on Intel
graphics card.
We all know that Intel 3D driver is open-source and nVidia 3D driver
is proprietary.
best regards,
MD.IMAM
Dan Kegel wrote:
I just had a look at http://test.winehq.org
and it seems that as of a couple days ago, a
Win2000 machine has started passing all the
tests! That's three OSs now: Win2000, Win2003, and WinXP.
(Not all systems with those OSs pass the tests,
but still, having even one box per OS pa
Andrew Eikum wrote:
Vincent Povirk wrote:
+/* make a graphics object and pen object */
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok, status);
+ok(hdc != NULL, "Expected HDC to be initialized\n");
+
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok,
On Wed, 3 Jun 2009, MD.IMAM HOSSAIN wrote:
[...]
> >From my experiment with recent version of WINE 1.1.22 :
>
> 3DMark 2001 has vertex shader problem (Under Game Lobby and Vertex Shader
> test).
> Hitman 2 Silent Assassin (No Human Body could be seen).
> Hitman 3 Contracts (No Human Body could be
I just had a look at http://test.winehq.org
and it seems that as of a couple days ago, a
Win2000 machine has started passing all the
tests! That's three OSs now: Win2000, Win2003, and WinXP.
(Not all systems with those OSs pass the tests,
but still, having even one box per OS pass them is a nice
m
Dear,
WINE Developers, Thanks to all of you for creating an environment where
people can enjoy games.
I very much pleased by the present state of WINE's Direct3D.
In my short range of views on earlier versions of wine Grend Theft Auto San
Andreas runs very slowly.
But now it is very playable. On W
Vincent Povirk wrote:
+/* make a graphics object and pen object */
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok, status);
+ok(hdc != NULL, "Expected HDC to be initialized\n");
+
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok, status);
+ok(gra
+/* make a graphics object and pen object */
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok, status);
+ok(hdc != NULL, "Expected HDC to be initialized\n");
+
+status = GdipCreateFromHDC(hdc, &graphics);
+expect(Ok, status);
+ok(graphics != NULL, "Expected
On Tue, 2009-06-02 at 13:17 +0200, Alexandre Julliard wrote:
> Guy Albertelli writes:
>
> > +hFile = CreateFileA( filename, GENERIC_READ | GENERIC_WRITE,
> > +FILE_SHARE_READ | FILE_SHARE_WRITE,
> > +NULL, OPEN_EXISTING,
> > +
Hi All,
I've been working on alpha support in HICONs and HIMAGELISTs. This patch
set includes my earlier test patch (plus modifications as per the
comments), and fixes up DrawIcon, DrawIconEx and
CURSORICON_CreateIconFromBMI.
I've tested the test patch on 2k, XP, and Vista - but any other test
pl
Hello all,
I was just checking around some old bugs and found 786 still opened. I've
written a patch for it, but I want to know if I'm anywhere close to get it
in.
I'm sorry if I'm only wasting your time.
Matijn
From 60244428d2ef1af082c99acce6e51da9ef247eec Mon Sep 17 00:00:00 2001
From: Matijn
On Tue, Jun 2, 2009 at 9:44 AM, Alexandre Julliard wrote:
> +#define MAX_BLOCKS 64 /* 64k methods should be enough for anybody */
lol, best. comment. ever!
--
Steven Edwards
"There is one thing stronger than all the armies in the world, and
that is an idea whose time has come." - Victor Hugo
Henri Verbeet writes:
> Alexandre Julliard wrote:
>> Yes, that looks fine. It would probably look nicer to merge the
>> allocator and the compare function into a single structure, and just
>> store a pointer to it like a vtbl; but that's a minor detail.
>>
> It's easy enough to store a pointer to
Alexandre Julliard wrote:
Yes, that looks fine. It would probably look nicer to merge the
allocator and the compare function into a single structure, and just
store a pointer to it like a vtbl; but that's a minor detail.
It's easy enough to store a pointer to the allocator instead of making a
c
Henri Verbeet writes:
> Alexandre Julliard wrote:
>> You can't hardcode malloc(), the allocator needs to be configurable,
>> particularly for use from the memory management code. Also printing an
>> ERR in that sort of code is not acceptable, errors need to be propagated
>> correctly and handled
Paul Vriens wrote:
Changelog
Fix a crash on NT4
Please don't use this one. I will soon sent a few others to replace this
one.
--
Cheers,
Paul.
> * You can use git commit with the -a switch to modify the last commit.
Whoops, I meant --amend. -a is something else.
> This one introduces failures on NT4 and below and on some boxes with a
> non-English locale.
Argh ..
> Could you have a look?
Yes.
Thanks for the fast report.
--
By by ... Detlef
>>Maybe, but builtin gdiplus has its own world transform and doesn't use
>>the gdi32 one. That's what transform_and_round_points is for.
>
> True but you're still using the GDI32 DrawText to actually render the text.
> transform_and_round_points is only doing what it says, transforming the
> coor
the rest aka the second patch.
git commit .
If you don't feel confident with git it is probably a good idea to
"backup" your current branch
git branch master-20090602
> of this size, that isn't that big a deal. But on larger changes I
> could see that being a b
Detlef Riekenberg wrote:
Add tests to show, that GetLocaleInfo assume SUBLANG_DEFAULT,
when called with an LCID that provide SUBLANG_NEUTRAL
Hi Detlef,
This one introduces failures on NT4 and below and on some boxes
>(reply didn't go to list as I expected, grr..)
>
>> Naw, it should still work normally. I've done aligned & rotated text under
>windows before with DrawTextW, you still pass the rect like you would if it
>wasn't rotated and set the alignment flags. The world transform should take
>care of getti
(reply didn't go to list as I expected, grr..)
> Naw, it should still work normally. I've done aligned & rotated text under
> windows before with DrawTextW, you still pass the rect like you would if it
> wasn't rotated and set the alignment flags. The world transform should take
> care of getti
>Without doing any actual testing:
>
>The vertical alignment stuff looks right to me.
>
>Horizontal alignment is suspicious. If the world transform rotates the
>text 90 degrees, DrawTextW can't be getting enough information to
>center the text. Then again, I'm not sure if rotation works properly
>w
Without doing any actual testing:
The vertical alignment stuff looks right to me.
Horizontal alignment is suspicious. If the world transform rotates the
text 90 degrees, DrawTextW can't be getting enough information to
center the text. Then again, I'm not sure if rotation works properly
with Gdip
On Tue, 2009-06-02 at 09:10 -0500, Jeremy Newman wrote:
> Scott Ritchie wrote:
> > Jeremy Newman wrote:
> >> I'm holding this patch hostage until the Wiki is updated with the
> new
> >> theme.
> >
> > Aren't you the one who's updating the wiki to the theme?
>
> No. I currently do not have access
Scott Ritchie wrote:
Jeremy Newman wrote:
I'm holding this patch hostage until the Wiki is updated with the new
theme.
Aren't you the one who's updating the wiki to the theme?
No. I currently do not have access to the Wiki. That is hosted by elsewhere.
We are willing, and have the space/cpu
>2009/6/2 Scott Ritchie :
>> First, I talked with a Pulseaudio expert about what we can do to make
>> things work better. He said that if we want good compatibility we will
>> need our ALSA stack to use the Pulseaudio safe subset:
>> http://0pointer.de/blog/projects/guide-to-sound-apis.html. I've
Alexandre Julliard wrote:
You can't hardcode malloc(), the allocator needs to be configurable,
particularly for use from the memory management code. Also printing an
ERR in that sort of code is not acceptable, errors need to be propagated
correctly and handled by the user.
I also still think thi
Roderick Colenbrander wrote:
> On Tue, Jun 2, 2009 at 10:08 AM, Francois Gouget wrote:
>> On Tue, 2 Jun 2009, Ben Klein wrote:
>>
>>> 2009/6/2 Scott Ritchie :
>> [...]
First, I talked with a Pulseaudio expert about what we can do to make
things work better. He said that if we want good
Jeremy Newman wrote:
> I'm holding this patch hostage until the Wiki is updated with the new
> theme.
>
> -Newman
>
> Jeremy White wrote:
>> ---
>> templates/en/home.template |4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/templates/en/home.template b/template
Humm, how odd, it was working here on my mac. i will test further.
-aric
Alexandre Julliard wrote:
Aric Stewart writes:
Associated with bug 18063 which is fixed.
Apparently not:
../../../tools/runtest -q -P wine -M shlwapi.dll -T ../../.. -p shlwapi_test.exe.so
url.c && touch url.ok
url
I'm holding this patch hostage until the Wiki is updated with the new theme.
-Newman
Jeremy White wrote:
---
templates/en/home.template |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/en/home.template b/templates/en/home.template
index bad2f62..870a934 100
Guy Albertelli writes:
> +hFile = CreateFileA( filename, GENERIC_READ | GENERIC_WRITE,
> +FILE_SHARE_READ | FILE_SHARE_WRITE,
> +NULL, OPEN_EXISTING,
> +p[i].options, NULL );
> +if (p[i].todo_flag)
> +
Piotr Caban writes:
> diff --git a/dlls/jscript/jscript_main.c b/dlls/jscript/jscript_main.c
> index 37266e5..740bb06 100644
> --- a/dlls/jscript/jscript_main.c
> +++ b/dlls/jscript/jscript_main.c
> @@ -38,6 +38,21 @@ static const CLSID CLSID_JScriptAuthor =
> static const CLSID CLSID_JScriptEnc
Aric Stewart writes:
> Associated with bug 18063 which is fixed.
Apparently not:
../../../tools/runtest -q -P wine -M shlwapi.dll -T ../../.. -p
shlwapi_test.exe.so url.c && touch url.ok
url.c:781: Test failed: Got length 22, expected 21
url.c:786: Test failed: Got length 22, expected 21
url.c
Jason Green writes:
> @@ -4213,10 +4213,10 @@ static INT HTTP_GetResponseHeaders(LPWININETHTTPREQW
> lpwhr, BOOL clear)
>
> /* regenerate raw headers */
> while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
> -{
> cchMaxRawHeaders *= 2;
> -lpszRaw
Tony Wasserka writes:
> +/* D3DXGetImageInfoFromFile */
> +todo_wine {
> +hr = D3DXGetImageInfoFromFileA("bmp1x1.bmp", &info);
> +ok(hr == D3D_OK, "D3DXGetImageInfoFromFile returned %#x, expected
> %#x\n", hr, D3D_OK);
> +}
> +
> +hr = D3DXGetImageInfoFromFileA("b
Henri Verbeet writes:
> +void wine_rb_init(struct wine_rb_tree *tree, wine_rb_compare_func_t *compare)
> +{
> +tree->compare = compare;
> +tree->root = NULL;
> +tree->stack.entries = malloc(16 * sizeof(*tree->stack.entries));
> +if (!tree->stack.entries)
> +{
> +ERR("F
I've tried XI2 Direct Input realisation with last xorg versions. It need
some function name fixes to build. Here is a fixed file. As soon, as my
wine will be build, i'll test the changes.
/*
* X11 DirectInput device support
*
* Copyright (C) 2009 Paul "TBBle" Hampson
*
* This library is free s
Vincent Povirk wrote:
I think you should add @ stdcall DdQueryDisplaySettingsUniqueness() line
to gdi32.spec file, otherwise you will get message like this:
err:module:find_forwarded_export function not found for forward
'gdi32.DdQueryDisplaySettingsUniqueness' used by L"C:\\windows\\system32
\\g
On Tue, Jun 2, 2009 at 10:08 AM, Francois Gouget wrote:
> On Tue, 2 Jun 2009, Ben Klein wrote:
>
>> 2009/6/2 Scott Ritchie :
> [...]
>> > First, I talked with a Pulseaudio expert about what we can do to make
>> > things work better. He said that if we want good compatibility we will
>> > need our
On Tue, 2 Jun 2009, Ben Klein wrote:
> 2009/6/2 Scott Ritchie :
[...]
> > First, I talked with a Pulseaudio expert about what we can do to make
> > things work better. He said that if we want good compatibility we will
> > need our ALSA stack to use the Pulseaudio safe subset:
> > http://0pointer
On Tuesday 02 June 2009 00:42:13 Stefan Leichter wrote:
> Am Monday 01 June 2009 16:13:43 schrieb Luke Bratch:
> > --- On Thu, 28/5/09, Luke Bratch wrote:
> > > In a couple of weeks I'm going to be travelling around
> > > India for about a month, from 14th June - 17th July, so I'll
> > > need some
45 matches
Mail list logo