Searched refs:ximage (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/gregbook/
H A Drpng-x.c139 static XImage *ximage; variable
660 ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
663 if (!ximage) {
676 ximage->byte_order = MSBFirst;
693 int ximage_rowbytes = ximage->bytes_per_line;
694 /* int bpp = ximage->bits_per_pixel; */
701 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel))
702 Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst?
703 "MSBFirst" : (ximage->byte_order == LSBFirst? "LSBFirst" : "unknown")))
710 dest = ximage
[all...]
H A Drpng2-x.c273 static XImage *ximage; variable
1008 ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
1011 if (!ximage) {
1024 ximage->byte_order = MSBFirst;
1083 int ximage_rowbytes = ximage->bytes_per_line;
1295 int bpp = ximage->bits_per_pixel;
1299 dest = ximage->data + row*ximage_rowbytes;
1308 /* recall that we set ximage->byte_order = MSBFirst above */
1322 /* recall that we set ximage->byte_order = MSBFirst above */
1337 dest = ximage
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dbmpmotif.cpp103 XImage *ximage = XGetImage( (Display*)m_display, local
109 m_image = (WXImage*)ximage;
113 XmInstallImage( ximage, GetCacheImageName(m_image).data() );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dbitmap.cpp329 XImage* ximage = XCreateImage( dpy, xvisual, depth, local
331 ximage->data = (char*)malloc( ximage->bytes_per_line * ximage->height );
332 ximage = XGetSubImage( dpy, (Pixmap)xpixmap,
334 AllPlanes, ZPixmap, ximage, 0, 0 );
340 XPutImage( dpy, ret, gc, ximage,
342 XDestroyImage( ximage );

Completed in 123 milliseconds