• Home
  • Raw
  • Download

Lines Matching refs:ximage

194    if (!xrb->ximage)  in clear_32bit_ximage()
207 GLuint *ptr4 = (GLuint *) xrb->ximage->data; in clear_32bit_ximage()
236 XMesaImage *img = xrb->ximage; in clear_nbit_ximage()
395 XMesaImage ximage; in xmesa_DrawPixels_8R8G8B() local
406 memset(&ximage, 0, sizeof(XMesaImage)); in xmesa_DrawPixels_8R8G8B()
407 ximage.width = width; in xmesa_DrawPixels_8R8G8B()
408 ximage.height = height; in xmesa_DrawPixels_8R8G8B()
409 ximage.format = ZPixmap; in xmesa_DrawPixels_8R8G8B()
410 ximage.data = (char *) pixels in xmesa_DrawPixels_8R8G8B()
412 ximage.byte_order = LSBFirst; in xmesa_DrawPixels_8R8G8B()
413 ximage.bitmap_unit = 32; in xmesa_DrawPixels_8R8G8B()
414 ximage.bitmap_bit_order = LSBFirst; in xmesa_DrawPixels_8R8G8B()
415 ximage.bitmap_pad = 32; in xmesa_DrawPixels_8R8G8B()
416 ximage.depth = 32; in xmesa_DrawPixels_8R8G8B()
417 ximage.bits_per_pixel = 32; in xmesa_DrawPixels_8R8G8B()
418 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */ in xmesa_DrawPixels_8R8G8B()
422 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h); in xmesa_DrawPixels_8R8G8B()
527 XMesaImage ximage; in xmesa_DrawPixels_5R6G5B() local
537 memset(&ximage, 0, sizeof(XMesaImage)); in xmesa_DrawPixels_5R6G5B()
538 ximage.width = width; in xmesa_DrawPixels_5R6G5B()
539 ximage.height = height; in xmesa_DrawPixels_5R6G5B()
540 ximage.format = ZPixmap; in xmesa_DrawPixels_5R6G5B()
541 ximage.data = (char *) pixels in xmesa_DrawPixels_5R6G5B()
543 ximage.byte_order = LSBFirst; in xmesa_DrawPixels_5R6G5B()
544 ximage.bitmap_unit = 16; in xmesa_DrawPixels_5R6G5B()
545 ximage.bitmap_bit_order = LSBFirst; in xmesa_DrawPixels_5R6G5B()
546 ximage.bitmap_pad = 16; in xmesa_DrawPixels_5R6G5B()
547 ximage.depth = 16; in xmesa_DrawPixels_5R6G5B()
548 ximage.bits_per_pixel = 16; in xmesa_DrawPixels_5R6G5B()
549 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */ in xmesa_DrawPixels_5R6G5B()
553 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h); in xmesa_DrawPixels_5R6G5B()