Searched refs:x_image (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/src/Main/
H A DFrameBufferX11.cpp62 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height);
64 shminfo.shmid = shmget(IPC_PRIVATE, x_image->bytes_per_line * x_image->height, IPC_CREAT | SHM_R | SHM_W);
65 shminfo.shmaddr = x_image->data = buffer = (char*)shmat(shminfo.shmid, 0, 0);
77 XDestroyImage(x_image);
88 x_image = libX11->XCreateImage(x_display, visual, depth, ZPixmap, 0, buffer, width, height, 32, width * 4);
96 x_image->data = 0;
97 XDestroyImage(x_image);
105 XDestroyImage(x_image);
118 stride = x_image
[all...]
H A DFrameBufferX11.hpp44 XImage *x_image; member in class:sw::FrameBufferX11

Completed in 206 milliseconds