Module: website
Branch: master
Commit: 173ea2afa4a86d2f1e228597b34d587d1536ebd2
URL: http://source.winehq.org/git/website.git/?a=commit;h=173ea2afa4a86d2f1e2285…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Fri May 15 16:49:48 2009 -0500
remove the # character from the #winehq irc: url
---
templates/en/irc.template | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/templates/en/irc.template b/templates/en/irc.template
index 72786aa..0c8e24e 100644
--- a/templates/en/irc.template
+++ b/templates/en/irc.template
@@ -14,6 +14,6 @@ Wine. You can access the chat room using an IRC program such as
</blockquote>
<p>If you use Mozilla or any other browser that supports IRC urls, you can
-join the chat by clicking on <a href="irc://irc.freenode.net/#winehq">irc://irc.freenode.net/#winehq</a>.</p>
+join the chat by clicking on <a href="irc://irc.freenode.net/winehq">irc://irc.freenode.net/winehq</a>.</p>
<p> </p>
Module: wine
Branch: master
Commit: c315d75dab48df8bd5466c9264b5fac8a509cf4f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c315d75dab48df8bd5466c926…
Author: Roderick Colenbrander <thunderbird2k(a)gmail.com>
Date: Fri May 15 00:00:49 2009 +0200
wgl: Offer PFD_GENERIC_ACCELERATED on bitmap capable formats.
Windows drivers do this as well and some apps rely on this (it might
fix Sketchup but I can't reproduce the issues on this system).
---
dlls/winex11.drv/opengl.c | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c
index da04e3e..ed46d69 100644
--- a/dlls/winex11.drv/opengl.c
+++ b/dlls/winex11.drv/opengl.c
@@ -944,7 +944,7 @@ static WineGLPixelFormat *get_formats(Display *display, int *size_ret, int *onsc
list[size].fmt_id = fmt_id;
list[size].render_type = get_render_type_from_fbconfig(display, cfgs[i]);
list[size].offscreenOnly = FALSE;
- list[size].dwFlags = PFD_DRAW_TO_BITMAP | PFD_SUPPORT_GDI;
+ list[size].dwFlags = PFD_DRAW_TO_BITMAP | PFD_SUPPORT_GDI | PFD_GENERIC_ACCELERATED;
size++;
onscreen_size++;
}
@@ -1413,9 +1413,12 @@ int CDECL X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
* offered the GDI bit either. */
ppfd->dwFlags |= fmt->dwFlags & (PFD_DRAW_TO_BITMAP | PFD_SUPPORT_GDI);
- pglXGetFBConfigAttrib(gdi_display, fmt->fbconfig, GLX_CONFIG_CAVEAT, &value);
- if(value == GLX_SLOW_CONFIG)
- ppfd->dwFlags |= PFD_GENERIC_ACCELERATED;
+ /* PFD_GENERIC_FORMAT - gdi software rendering
+ * PFD_GENERIC_ACCELERATED - some parts are accelerated by a display driver (ICD or MCD)
+ * none set - full hardware accelerated by a ICD
+ *
+ * We only set PFD_GENERIC_ACCELERATED on bitmap formats (see get_formats) as that's what ATI and Nvidia Windows drivers do */
+ ppfd->dwFlags |= fmt->dwFlags & PFD_GENERIC_ACCELERATED;
pglXGetFBConfigAttrib(gdi_display, fmt->fbconfig, GLX_DOUBLEBUFFER, &value);
if (value) {
Module: wine
Branch: master
Commit: b5a62756aa6f9d046efc0cff76d2c4e0ca9349ee
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b5a62756aa6f9d046efc0cff7…
Author: Roderick Colenbrander <thunderbird2k(a)gmail.com>
Date: Thu May 14 17:05:20 2009 +0200
wgl: Duplicate some single buffered pixel formats for bitmap rendering and restrict bitmap rendering to these formats.
The use of direct / indirect rendering is now tied to the bitmapFormat
flag of a pixel format. Indirect is fine for bitmap rendering since on
windows it is only supported using the software gdi renderer and
indirect rendering can also indicate software rendering.
---
dlls/winex11.drv/opengl.c | 91 ++++++++++++++++++++++++++++++++++-----------
1 files changed, 69 insertions(+), 22 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=b5a62756aa6f9d046efc0…