winex11: Add a trace in ExtEscape to make wgl problems easier to diagnose.

This commit is contained in:
Alexandre Julliard 2008-06-09 16:57:38 +02:00
parent e63f4fcfbc
commit 77416b8668
1 changed files with 3 additions and 0 deletions

View File

@ -346,6 +346,9 @@ INT X11DRV_ExtEscape( X11DRV_PDEVICE *physDev, INT escape, INT in_count, LPCVOID
wine_tsx11_lock();
XSetSubwindowMode( gdi_display, physDev->gc, data->mode );
wine_tsx11_unlock();
TRACE( "SET_DRAWABLE hdc %p drawable %lx gl_drawable %lx pf %u dc_rect %s drawable_rect %s\n",
physDev->hdc, physDev->drawable, physDev->gl_drawable, physDev->current_pf,
wine_dbgstr_rect(&physDev->dc_rect), wine_dbgstr_rect(&physDev->drawable_rect) );
return TRUE;
}
break;