HomeSort by relevance Sort by last modified time
    Searched full:ximage (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
ImUtil.h 17 XImage *srcimg,
18 register XImage *dstimg,
28 register XImage *image);
Xutil.h 188 XImage *ximage);
190 XImage *ximage,
193 XImage *ximage,
196 extern XImage *XSubImage(
197 XImage *ximage,
201 XImage *ximage
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_buffer.c 60 * Allocate a shared memory XImage back buffer for the given XMesaBuffer.
80 b->backxrb->ximage = XShmCreateImage(b->xm_visual->display,
85 if (b->backxrb->ximage == NULL) {
91 b->shminfo.shmid = shmget(IPC_PRIVATE, b->backxrb->ximage->bytes_per_line
92 * b->backxrb->ximage->height, IPC_CREAT|0777);
95 XDestroyImage(b->backxrb->ximage);
96 b->backxrb->ximage = NULL;
102 b->shminfo.shmaddr = b->backxrb->ximage->data
106 XDestroyImage(b->backxrb->ximage);
108 b->backxrb->ximage = NULL
430 XImage *ximage = xrb->ximage; local
521 XImage *ximage = xrb->ximage; local
    [all...]
xm_tri.c 59 * XImage, smooth, depth-buffered, PF_TRUECOLOR triangle.
78 XMesaPutPixel(xrb->ximage, x, y, p); \
93 * XImage, smooth, depth-buffered, PF_8A8B8G8R triangle.
102 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
127 * XImage, smooth, depth-buffered, PF_8A8R8G8B triangle.
136 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
162 * XImage, smooth, depth-buffered, PF_8R8G8B triangle.
170 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
194 * XImage, smooth, depth-buffered, PF_8R8G8B24 triangle.
202 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line
    [all...]
xm_line.c 101 && xmesa->xm_buffer->buffer != XIMAGE) {
127 * Draw a flat-shaded, PF_TRUECOLOR line into an XImage.
137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel );
143 * Draw a flat-shaded, PF_8A8B8G8R line into an XImage.
151 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
160 * Draw a flat-shaded, PF_8A8R8G8B line into an XImage.
168 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
177 * Draw a flat-shaded, PF_8R8G8B line into an XImage.
185 #define BYTES_PER_ROW (xrb->ximage->bytes_per_line)
194 * Draw a flat-shaded, PF_8R8G8B24 line into an XImage
    [all...]
xm_dd.c 186 if (!xrb->ximage)
199 GLuint *ptr4 = (GLuint *) xrb->ximage->data;
228 XMesaImage *img = xrb->ximage;
387 XMesaImage ximage; local
398 memset(&ximage, 0, sizeof(XMesaImage));
399 ximage.width = width;
400 ximage.height = height;
401 ximage.format = ZPixmap;
402 ximage.data = (char *) pixels
404 ximage.byte_order = LSBFirst
519 XMesaImage ximage; local
    [all...]
xm_api.c 40 * use an Ximage for the back buffer in double buffered mode, the "swap"
45 * XImages. The byte ordering used for the XImage is that of the X
49 * If XPutPixel is used to put a pixel into an XImage then XPutPixel will
51 * into the XImage's buffer then the pixel must be byte swapped first. In
114 * 1 = shared XImage support available
174 /* Create a temporary XImage */
185 /* free the XImage */
728 * ximage_flag - GL_TRUE = use an XImage for back buffer,
    [all...]
  /external/ImageMagick/coders/
xwd.c 202 XImage
203 *ximage;
276 ximage=(XImage *) AcquireMagickMemory(sizeof(*ximage));
277 if (ximage == (XImage *) NULL)
279 ximage->depth=(int) header.pixmap_depth;
280 ximage->format=(int) header.pixmap_format;
281 ximage->xoffset=(int) header.xoffset
199 *ximage; local
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 70 XImage *tempImage;
146 * Allocate a shared memory XImage back buffer for the given display target.
303 XImage *ximage; local
343 ximage = xlib_dt->tempImage;
344 ximage->data = xlib_dt->data;
348 ximage, 0, 0, 0, 0, xlib_dt->width, xlib_dt->height, False);
352 ximage = xlib_dt->tempImage;
353 ximage->data = xlib_dt->data;
355 /* check that the XImage has been previously initialized *
    [all...]
  /art/test/118-noimage-dex2oat/
expected.txt 7 Run -Ximage-dex2oat
  /art/test/119-noimage-patchoat/
expected.txt 6 Run -Ximage-dex2oat
run 46 echo "Run -Ximage-dex2oat"
47 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
  /external/swiftshader/src/Main/
libX11.cpp 35 XCreateImage = (XImage *(*)(Display*, Visual*, unsigned int, int, int, char*, unsigned int, unsigned int, int, int))getProcAddress(libX11, "XCreateImage");
37 XPutImage = (int (*)(Display*, Drawable, GC, XImage*, int, int, int, int, unsigned int, unsigned int))getProcAddress(libX11, "XPutImage");
41 XShmCreateImage = (XImage *(*)(Display*, Visual*, unsigned int, int, char*, XShmSegmentInfo*, unsigned int, unsigned int))getProcAddress(libXext, "XShmCreateImage");
44 XShmPutImage = (int (*)(Display*, Drawable, GC, XImage*, int, int, int, int, unsigned int, unsigned int, bool))getProcAddress(libXext, "XShmPutImage");
libX11.hpp 39 XImage *(*XCreateImage)(Display *display, Visual *visual, unsigned int depth, int format, int offset, char *data, unsigned int width, unsigned int height, int bitmap_pad, int bytes_per_line);
41 int (*XPutImage)(Display *display, Drawable d, GC gc, XImage *image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height);
45 XImage *(*XShmCreateImage)(Display *display, Visual *visual, unsigned int depth, int format, char *data, XShmSegmentInfo *shminfo, unsigned int width, unsigned int height);
48 int (*XShmPutImage)(Display *display, Drawable d, GC gc, XImage *image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height, bool send_event);
FrameBufferX11.hpp 44 XImage *x_image;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XShm.h 92 XImage* /* image */,
105 XImage* /* image */,
111 XImage *XShmCreateImage(
  /external/mesa3d/src/glx/
drisw_glx.c 59 /* create XImage */
60 pdp->ximage = XCreateImage(dpy,
73 if (pdp->ximage->bits_per_pixel == 24)
74 pdp->ximage->bits_per_pixel = 32;
82 XDestroyImage(pdp->ximage);
144 XImage *ximage; local
160 ximage = pdp->ximage;
161 ximage->data = data
188 XImage *ximage; local
    [all...]
drisw_priv.h 64 XImage *ximage; member in struct:drisw_drawable
  /external/libpng/contrib/gregbook/
rpng-x.c 142 static XImage *ximage; variable
667 ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
670 if (!ximage) {
683 ximage->byte_order = MSBFirst;
700 int ximage_rowbytes = ximage->bytes_per_line;
701 /* int bpp = ximage->bits_per_pixel; */
708 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel))
709 Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst?
710 "MSBFirst" : (ximage->byte_order == LSBFirst? "LSBFirst" : "unknown"))
    [all...]
  /art/test/157-void-class/
run 21 --runtime-option -Ximage-compiler-option \
  /art/tools/dexfuzz/src/dexfuzz/executors/
Arm64InterpreterExecutor.java 33 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate ");
Arm64OptimizingBackendExecutor.java 36 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate ");
ArmInterpreterExecutor.java 33 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate ");
ArmOptimizingBackendExecutor.java 36 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate ");
  /external/ImageMagick/MagickCore/
xwindow.c 223 XImage *,XImage *,ExceptionInfo *),
225 XImage *,XImage *,ExceptionInfo *);
317 if (magick_windows[i]->ximage != (XImage *) NULL)
319 XDestroyImage(magick_windows[i]->ximage);
320 magick_windows[i]->ximage=(XImage *) NULL;
505 XImage
3868 *ximage; local
4193 *ximage; local
5444 *ximage; local
7134 *ximage; local
    [all...]

Completed in 906 milliseconds

1 2 3 4