diff options
author | das <das> | 2004-02-23 10:49:29 (GMT) |
---|---|---|
committer | das <das> | 2004-02-23 10:49:29 (GMT) |
commit | d7700b6e8a2b1bf2b9187c5fcb2bf56bae4ce882 (patch) | |
tree | b311d4d99e05537a622c27159bf7d6b0c74ef3a3 /xlib/ximage.c | |
parent | 00fb53422c132e71f80fb9b50794308a3ded361c (diff) | |
download | tk-d7700b6e8a2b1bf2b9187c5fcb2bf56bae4ce882.zip tk-d7700b6e8a2b1bf2b9187c5fcb2bf56bae4ce882.tar.gz tk-d7700b6e8a2b1bf2b9187c5fcb2bf56bae4ce882.tar.bz2 |
* macosx/tkMacOSXDraw.c:
* macosx/tkMacOSXXStubs.c:
* xlib/ximage.c: fixed MacOSX XGetImage/XPutImage and related
functions to deal properly with XImages copied from screen.
* generic/tkCanvPs.c (TkImageGetColor): MacOSX fix.
* generic/tkImgPhoto.c (ImgPhotoDisplay): enabled alpha blending
for images with partial transparency on MacOSX.
[Bug 809157]
Diffstat (limited to 'xlib/ximage.c')
-rw-r--r-- | xlib/ximage.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xlib/ximage.c b/xlib/ximage.c index d2214ba..8519597 100644 --- a/xlib/ximage.c +++ b/xlib/ximage.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: ximage.c,v 1.4 2000/07/06 03:17:45 mo Exp $ + * RCS: @(#) $Id: ximage.c,v 1.4.8.1 2004/02/23 10:49:29 das Exp $ */ #include "tkInt.h" @@ -64,6 +64,9 @@ XCreateBitmapFromData(display, d, data, width, height) ximage.bitmap_bit_order = LSBFirst; ximage.bitmap_pad = 8; ximage.bytes_per_line = (width+7)/8; +#ifdef MAC_OSX_TK + ximage.obdata = NULL; +#endif TkPutImage(NULL, 0, display, pix, gc, &ximage, 0, 0, 0, 0, width, height); XFreeGC(display, gc); |