mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
winex11: Only declare X11DRV_DIB_QueryXShm if XShm is supported.
This commit is contained in:
parent
abfb9211c8
commit
31f8a525c8
@ -3849,7 +3849,6 @@ static XImage *X11DRV_XShmCreateImage( int width, int height, int bpp,
|
||||
}
|
||||
return image;
|
||||
}
|
||||
#endif /* HAVE_LIBXXSHM */
|
||||
|
||||
static Bool X11DRV_DIB_QueryXShm( Bool *pixmaps )
|
||||
{
|
||||
@ -3858,17 +3857,16 @@ static Bool X11DRV_DIB_QueryXShm( Bool *pixmaps )
|
||||
|
||||
if (!initialized)
|
||||
{
|
||||
#ifdef HAVE_LIBXXSHM
|
||||
int major, minor;
|
||||
|
||||
have_xshm = XShmQueryVersion( gdi_display, &major, &minor, &have_xshm_pixmaps );
|
||||
#endif
|
||||
initialized = TRUE;
|
||||
}
|
||||
|
||||
*pixmaps = have_xshm_pixmaps;
|
||||
return have_xshm;
|
||||
}
|
||||
#endif /* HAVE_LIBXXSHM */
|
||||
|
||||
/***********************************************************************
|
||||
* X11DRV_CreateDIBSection (X11DRV.@)
|
||||
|
Loading…
Reference in New Issue
Block a user