Commit fc5e5eae authored by Cyril Margorin's avatar Cyril Margorin Committed by Alexandre Julliard

x11drv: Fix X11DRV_GetDIBits to pass shared memory image to

X11DRV_DIB_GetImageBits.
parent 968445ca
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment