Lines Matching refs:x_image
66 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height); in FrameBufferX11()
68 …shminfo.shmid = shmget(IPC_PRIVATE, x_image->bytes_per_line * x_image->height, IPC_CREAT | SHM_R |… in FrameBufferX11()
69 shminfo.shmaddr = x_image->data = (char*)shmat(shminfo.shmid, 0, 0); in FrameBufferX11()
81 XDestroyImage(x_image); in FrameBufferX11()
96 …x_image = libX11->XCreateImage(x_display, visual, depth, ZPixmap, 0, buffer, width, height, 32, by… in FrameBufferX11()
97 assert(x_image); in FrameBufferX11()
99 if(!x_image) in FrameBufferX11()
110 XDestroyImage(x_image); in ~FrameBufferX11()
115 XDestroyImage(x_image); in ~FrameBufferX11()
128 if(x_image) in lock()
130 stride = x_image->bytes_per_line; in lock()
131 framebuffer = x_image->data; in lock()
148 libX11->XPutImage(x_display, x_window, x_gc, x_image, 0, 0, 0, 0, width, height); in blit()
152 libX11->XShmPutImage(x_display, x_window, x_gc, x_image, 0, 0, 0, 0, width, height, False); in blit()