mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:50:48 +00:00
winex11: Don't put the GL drawable offscreen.
This commit is contained in:
parent
515329d58c
commit
b4afbf98cf
1 changed files with 2 additions and 2 deletions
|
@ -591,7 +591,7 @@ static BOOL set_win_format( HWND hwnd, XID fbconfig_id )
|
|||
XInstallColormap(gdi_display, attrib.colormap);
|
||||
|
||||
if(data->gl_drawable) XDestroyWindow(gdi_display, data->gl_drawable);
|
||||
data->gl_drawable = XCreateWindow(gdi_display, dummy_parent, -w, 0, w, h, 0,
|
||||
data->gl_drawable = XCreateWindow(gdi_display, dummy_parent, 0, 0, w, h, 0,
|
||||
vis->depth, InputOutput, vis->visual,
|
||||
CWColormap | CWOverrideRedirect,
|
||||
&attrib);
|
||||
|
@ -669,7 +669,7 @@ static void sync_gl_drawable(struct x11drv_win_data *data)
|
|||
if(usexcomposite)
|
||||
{
|
||||
wine_tsx11_lock();
|
||||
XMoveResizeWindow(gdi_display, data->gl_drawable, -w, 0, w, h);
|
||||
XMoveResizeWindow(gdi_display, data->gl_drawable, 0, 0, w, h);
|
||||
wine_tsx11_unlock();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue