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

/openjdk9/jdk/src/java.desktop/unix/native/common/java2d/x11/
H A DX11FontScaler_md.c92 static void dumpXImage(XImage *ximage) argument
94 int height = ximage->height;
95 int width = ximage->width;
102 int pixel = ximage->f.get_pixel(ximage, column, row);
269 XImage *ximage; local
316 ximage = XGetImage(awt_display, pixmap, 0, 0, width, height,
319 if (ximage == NULL) {
326 dumpXImage(ximage);
329 nbytes = ximage
[all...]
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A DmultiVis.c401 XImage *reg_image,*ximage ; local
422 ximage = XCreateImage(disp,fakeVis,(uint32_t) depth,format,0,NULL,
425 bytes_per_line = ximage->bytes_per_line;
428 ximage->data = malloc(height*bytes_per_line);
430 ximage->data = malloc(height*bytes_per_line*depth);
432 ximage->bits_per_pixel = depth; /** Valid only if format is ZPixmap ***/
465 srcRect_height,reg,ximage,dst_x,dst_y) ;
469 return ximage ;
500 XImage *ximage, *ximage_ipm ; local
521 ximage
[all...]
/openjdk9/jdk/src/java.desktop/unix/native/libsplashscreen/
H A Dsplashscreen_sys.c329 XImage *ximage; local
336 ximage = XCreateImage(splash->display, splash->visual,
339 ximage->data = (char *) splash->screenData;
340 ximage->bits_per_pixel = ximage->depth;
341 ximage->bytes_per_line = ximage->depth * ximage->width / 8;
342 ximage->byte_order = ByteOrderToX(splash->screenFormat.byteOrder);
343 ximage
[all...]

Completed in 100 milliseconds