"H. Verbeet" <hverbeet(a)gmail.com> writes:
> It should be noted that native d3d rounds to nearest even while Wine
> doesn't. Applications are not supposed to depend on that though.
>
> Changelog:
> - Add a mova rounding test
The test fails here:
../../../tools/runtest -q -P wine -M d3d9.dll -T ../../.. -p d3d9_test.exe.so visual.c && touch visual.ok
visual.c:405: Test failed: Expected color 00ffff00, got 00000000 (for input -2.400000)
visual.c:405: Test failed: …
[View More]Expected color 00ffff00, got 00000000 (for input -1.600000)
visual.c:405: Test failed: Expected color 0000ffff, got 00000000 (for input -0.400000)
visual.c:405: Test failed: Expected color 0000ffff, got 00000000 (for input 0.400000)
visual.c:405: Test failed: Expected color 00ff00ff, got 00000000 (for input 1.600000)
visual.c:405: Test failed: Expected color 00ff00ff, got 00000000 (for input 2.400000)
make: *** [visual.ok] Error 6
--
Alexandre Julliard
julliard(a)winehq.org
[View Less]
Someone has defaced Wine's Wiki frontpage.
Also I have either forgotten my password or the user accounts don't
work anymore. Could someone look into this?
--
Francois Gouget <fgouget(a)free.fr> http://fgouget.free.fr/
War doesn't determine who's right. War determines who's left.
Hi,
I would like participate to the Google Summer Of Code with Wine by
implementing a DIB Engine. I've searched a lot of informations about the
DIB Engine but i still got one question :
for you, how important is a DIB Engine in Wine ?
Ben.
> I don't know if that patch wasn't applied because other patches of my patchset
> weren't applied, or because something is wrong with this patch. If something
> is wrong with this patch please tell me
> @@ -3083,33 +3083,44 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
> XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
> {
> XVisualInfo *visual = NULL;
> - /* In order to support OpenGL or D3D, we require a double-buffered visual and stencil …
[View More]buffer support, */
> - int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
> + /* In order to support OpenGL or D3D, we require a double-buffered visual and stencil buffer support,
> + * WineD3D and Some applications can make use of aux buffers
> + */
> + int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_AUX_BUFFERS, 1, GLX_DOUBLEBUFFER, None};
[skip]
> + int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
[skip]
> + int dblBuf3[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_STENCIL_SIZE, 8, GLX_DOUBLEBUFFER, None};
[skip]
> + int dblBuf4[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, None};
3 levels was bad enough. Can we put this in an array and iterate through
it instead of adding more levels? Specific comments can go there as well.
Vitaliy.
[View Less]
Felix Nawothnig wrote:
> - if (last)
> - {
> - LdrShutdownProcess();
> - exit( exit_code );
> - }
> - else
> - {
> - LdrShutdownThread();
> - server_exit_thread( exit_code );
> - }
> + NtTerminateThread( GetCurrentThread(), func( arg ) );
> + exit(0); /* To avoid a compiler warning, never reached. */
server_exit_thread() and NtTerminateThread() (which calls
server_abort_thread()) are not the same things! …
[View More]Former gracefully exits
the current thread freeing it's memory. Later rips it out from the
process without freeing any resources.
Needless to say you can't do that.
Vitaliy.
[View Less]
"Felix Nawothnig" <flexo(a)holycrap.org> wrote:
> - if (last)
> - {
> - LdrShutdownProcess();
> - exit( code );
> - }
> - else RtlExitUserThread( code );
> + TerminateThread( GetCurrentThread(), code );
> + exit(code); /* To avoid a compiler warning, never reached. */
> }
New code now calls exit() unconditionally killing the whole process.
If you follow the TerminateThread way you will notice that exit()
is being already called …
[View More]on its time.
--
Dmitry.
[View Less]
Something's wrong with this patch: it has more 2 nested if statements.
I suggest early returns on negated condition, gotos, and subroutines to
fix the problem :)
> I don't know if that patch wasn't applied because other patches of my patchset
> weren't applied, or because something is wrong with this patch. If something
> is wrong with this patch please tell me
>
> ------------------------------------------------------------------------
>
> From …
[View More]029e9756abed6c2647950f86e9227ba47d366ebe Mon Sep 17 00:00:00 2001
> From: Stefan Doesinger <stefan(a)codeweavers.com>
> Date: Tue, 27 Feb 2007 15:53:43 +0100
> Subject: [PATCH] winex11.drv: Try to get an opengl visual with aux buffers
>
> Applications may profit from auxilliary buffers. Because we have to find
> the visual at initialization time try to find a visual with aux buffers
> first, if none is found fall back to the usual default visual without
> aux buffers
> ---
> dlls/winex11.drv/opengl.c | 35 +++++++++++++++++++++++------------
> 1 files changed, 23 insertions(+), 12 deletions(-)
>
> diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c
> index fdb92ae..9c1060a 100644
> --- a/dlls/winex11.drv/opengl.c
> +++ b/dlls/winex11.drv/opengl.c
> @@ -3083,33 +3083,44 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
> XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
> {
> XVisualInfo *visual = NULL;
> - /* In order to support OpenGL or D3D, we require a double-buffered visual and stencil buffer support, */
> - int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
> + /* In order to support OpenGL or D3D, we require a double-buffered visual and stencil buffer support,
> + * WineD3D and Some applications can make use of aux buffers
> + */
> + int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_AUX_BUFFERS, 1, GLX_DOUBLEBUFFER, None};
> if (!has_opengl()) return NULL;
>
> wine_tsx11_lock();
> visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf);
> wine_tsx11_unlock();
> if (visual == NULL) {
> - /* fallback to 16 bits depth, no alpha */
> - int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_STENCIL_SIZE, 8, GLX_DOUBLEBUFFER, None};
> - WARN("Failed to get a visual with at least 24 bits depth\n");
> + /* Try without aux buffers */
> + int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
> + WARN("Failed to get a visual with at least one aux buffer\n");
>
> wine_tsx11_lock();
> visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
> wine_tsx11_unlock();
> if (visual == NULL) {
> - /* fallback to no stencil */
> - int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, None};
> - WARN("Failed to get a visual with at least 8 bits of stencil\n");
> + /* fallback to 16 bits depth, no alpha */
> + int dblBuf3[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_STENCIL_SIZE, 8, GLX_DOUBLEBUFFER, None};
> + WARN("Failed to get a visual with at least 24 bits depth\n");
>
> wine_tsx11_lock();
> - visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
> + visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf3);
> wine_tsx11_unlock();
> if (visual == NULL) {
> - /* This should only happen if we cannot find a match with a depth size 16 */
> - FIXME("Failed to find a suitable visual\n");
> - return visual;
> + /* fallback to no stencil */
> + int dblBuf4[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, None};
> + WARN("Failed to get a visual with at least 8 bits of stencil\n");
> +
> + wine_tsx11_lock();
> + visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf4);
> + wine_tsx11_unlock();
> + if (visual == NULL) {
> + /* This should only happen if we cannot find a match with a depth size 16 */
> + FIXME("Failed to find a suitable visual\n");
> + return visual;
> + }
> }
> }
> }
>
> ------------------------------------------------------------------------
>
>
>
[View Less]