x11drv: Fix X11DRV_GetDIBits to pass shared memory image to
X11DRV_DIB_GetImageBits.
This commit is contained in:
parent
968445ca77
commit
fc5e5eae8a
|
@ -4080,7 +4080,7 @@ INT X11DRV_GetDIBits( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, UINT startscan,
|
|||
descr.physDev = physDev;
|
||||
descr.palentry = palette;
|
||||
descr.bits = bits;
|
||||
descr.image = NULL;
|
||||
descr.image = physBitmap->image;
|
||||
descr.infoWidth = width;
|
||||
descr.lines = lines;
|
||||
descr.depth = physBitmap->pixmap_depth;
|
||||
|
|
Loading…
Reference in New Issue