Searched refs:mask_image (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dbitmap.cpp644 GdkImage *mask_image = (GdkImage*) NULL; local
650 mask_image = gdk_image_new_bitmap( visual, mask_data, width, height );
679 gdk_image_put_pixel( mask_image, x, y, 1 );
681 gdk_image_put_pixel( mask_image, x, y, 0 );
707 gdk_draw_image( GetMask()->GetBitmap(), mask_gc, mask_image, 0, 0, 0, 0, width, height );
709 gdk_image_destroy( mask_image );
780 GdkImage *mask_image = (GdkImage*) NULL; local
786 mask_image = gdk_image_new_bitmap( visual, mask_data, width, height );
830 gdk_image_put_pixel( mask_image, x, y, 1 );
832 gdk_image_put_pixel( mask_image,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dbitmap.cpp598 XImage *mask_image = (XImage*) NULL;
601 mask_image = XCreateImage( xdisplay, xvisual, 1, ZPixmap, 0, 0, width, height, 32, 0 );
602 mask_image->data = (char*) malloc( mask_image->bytes_per_line * mask_image->height );
604 if (mask_image->data == NULL)
666 XPutPixel( mask_image, x, y, 0 );
668 XPutPixel( mask_image, x, y, 1 );
759 XPutImage( xdisplay, (Pixmap) GetMask()->GetBitmap(), gc, mask_image, 0, 0, 0, 0, width, height );
761 XDestroyImage( mask_image );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mgl/
H A Dbitmap.cpp199 wxImage mask_image = image.ConvertToMono(image.GetMaskRed(), local
202 mask_image.SetMask(false);
203 wxBitmap mask_bmp(mask_image, 1);

Completed in 85 milliseconds