Lines Matching refs:ximage

186    if (!xrb->ximage)  in clear_32bit_ximage()
199 GLuint *ptr4 = (GLuint *) xrb->ximage->data; in clear_32bit_ximage()
228 XMesaImage *img = xrb->ximage; in clear_nbit_ximage()
389 XMesaImage ximage; in xmesa_DrawPixels_8R8G8B() local
400 memset(&ximage, 0, sizeof(XMesaImage)); in xmesa_DrawPixels_8R8G8B()
401 ximage.width = width; in xmesa_DrawPixels_8R8G8B()
402 ximage.height = height; in xmesa_DrawPixels_8R8G8B()
403 ximage.format = ZPixmap; in xmesa_DrawPixels_8R8G8B()
404 ximage.data = (char *) pixels in xmesa_DrawPixels_8R8G8B()
406 ximage.byte_order = LSBFirst; in xmesa_DrawPixels_8R8G8B()
407 ximage.bitmap_unit = 32; in xmesa_DrawPixels_8R8G8B()
408 ximage.bitmap_bit_order = LSBFirst; in xmesa_DrawPixels_8R8G8B()
409 ximage.bitmap_pad = 32; in xmesa_DrawPixels_8R8G8B()
410 ximage.depth = 32; in xmesa_DrawPixels_8R8G8B()
411 ximage.bits_per_pixel = 32; in xmesa_DrawPixels_8R8G8B()
412 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */ in xmesa_DrawPixels_8R8G8B()
416 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h); in xmesa_DrawPixels_8R8G8B()
523 XMesaImage ximage; in xmesa_DrawPixels_5R6G5B() local
533 memset(&ximage, 0, sizeof(XMesaImage)); in xmesa_DrawPixels_5R6G5B()
534 ximage.width = width; in xmesa_DrawPixels_5R6G5B()
535 ximage.height = height; in xmesa_DrawPixels_5R6G5B()
536 ximage.format = ZPixmap; in xmesa_DrawPixels_5R6G5B()
537 ximage.data = (char *) pixels in xmesa_DrawPixels_5R6G5B()
539 ximage.byte_order = LSBFirst; in xmesa_DrawPixels_5R6G5B()
540 ximage.bitmap_unit = 16; in xmesa_DrawPixels_5R6G5B()
541 ximage.bitmap_bit_order = LSBFirst; in xmesa_DrawPixels_5R6G5B()
542 ximage.bitmap_pad = 16; in xmesa_DrawPixels_5R6G5B()
543 ximage.depth = 16; in xmesa_DrawPixels_5R6G5B()
544 ximage.bits_per_pixel = 16; in xmesa_DrawPixels_5R6G5B()
545 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */ in xmesa_DrawPixels_5R6G5B()
549 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h); in xmesa_DrawPixels_5R6G5B()