Displaying 2 results from an estimated 2 matches for "thread_display".
2003 Apr 10
1
Starcraft Patch
...ct immediately */
- XFlush( data->display );
+ XFlush( display );
}
}
wine_tsx11_unlock();
@@ -503,7 +517,11 @@
*/
void X11DRV_SetCursorPos( INT x, INT y )
{
+#ifdef HAVE_LIBXXF86DGA2
+ Display *display = DGAUsed ? gdi_display : thread_display();
+#else
Display *display = thread_display();
+#endif
TRACE( "warping to (%d,%d)\n", x, y );
@@ -518,7 +536,11 @@
*/
void X11DRV_GetCursorPos(LPPOINT pos)
{
+#ifdef HAVE_LIBXXF86DGA2
+ Display *display = DGAUsed ? gdi_display : thread_display();
+#else
Display *disp...
2008 Jun 27
0
Wine release 1.1.0
...E windows.
ole32: Make the apartment window a HWND_MESSAGE window.
wine.inf: Make the initial owner information empty.
winex11: Explicitly request creation of the per-thread data where necessary.
winex11: Pass the display as parameter to a few more functions instead of using thread_display().
winex11: Get rid of the explicit colormap management.
winex11: Explicitly request creation of the thread display where necessary.
winex11: Don't create a win data structure for HWND_MESSAGE windows.
server: Fix a potential desktop reference leak.
widl: [default]...