HomeSort by: relevance | last modified time | path
    Searched defs:pixel (Results 1 - 25 of 155) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/xorg-server/dist/render/
mirect.c 42 CARD32 pixel; local
48 miRenderColorToPixel(pDst->pFormat, color, &pixel);
54 tmpval[1].val = pixel;
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
error.hpp 29 #undef pixel macro
  /xsrc/external/mit/xorg-server.old/dist/render/
mirect.c 45 CARD32 pixel; local
51 miRenderColorToPixel (pDst->pFormat, color, &pixel);
57 tmpval[1].val = pixel;
129 Pixel pixel; local
143 miRenderColorToPixel (rgbaFormat, color, &pixel);
149 gcvals[1].val = pixel;
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_atom_msaa.c 53 unsigned grid_width, grid_height, size, pixel, sample_index; local
72 for (pixel = 0; pixel < grid_width * grid_height; pixel++) {
78 table_index = pixel * samples + sample_index;
88 locations[pixel * samples + sample_index] = loc;
128 * encouraged this mask not be the same at each pixel.
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_atom_msaa.c 53 unsigned grid_width, grid_height, size, pixel, sample_index; local
72 for (pixel = 0; pixel < grid_width * grid_height; pixel++) {
78 table_index = pixel * samples + sample_index;
88 locations[pixel * samples + sample_index] = loc;
128 * encouraged this mask not be the same at each pixel.
  /xsrc/external/mit/xcb-util/dist/image/
xcb_pixel.h 37 * XCB Image fast pixel ops.
44 * bits-per-pixel, and B is the endianness (if needed)
48 * Also note that the pixel type is chosen to be appropriate
58 int pixel)
64 uint8_t p = pixel << bit;
73 int pixel)
77 uint8_t p = pixel << bit;
108 uint8_t pixel)
110 image->data[x + y * image->stride] = pixel;
125 uint32_t pixel)
153 uint32_t pixel = row[x << 2] << 24; local
165 uint32_t pixel = row[x << 2]; local
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/test/
shm-test.c 72 uint32_t pixel = 0xffffffff; local
113 gcv.foreground = pixel;
  /xsrc/external/mit/xf86-video-intel-2014/dist/test/
shm-test.c 72 uint32_t pixel = 0xffffffff; local
113 gcv.foreground = pixel;
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_compositerects.c 229 CARD32 pixel; local
241 pixel = 0;
243 miRenderColorToPixel(dst->pFormat, color, &pixel);
244 glamor_solid_boxes(pixmap, boxes, num_boxes, pixel);
  /xsrc/external/mit/xorg-server/dist/hw/sun/
sunCfb24.c 88 i = pdefs->pixel;
121 Pixel pixel = pScreen->whitePixel; local
123 pScreen->blackPixel = pixel;
  /xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunCfb24.c 88 i = pdefs->pixel;
121 Pixel pixel = pScreen->whitePixel; local
123 pScreen->blackPixel = pixel;
  /xsrc/external/mit/MesaLib/dist/src/gallium/targets/osmesa/
test-render.cpp 104 fprintf(stderr, "pixel %d: %02x %02x %02x %02x\n",
225 uint32_t pixel; local
226 auto ret = OSMesaMakeCurrent(ctx.get(), &pixel, GL_UNSIGNED_BYTE, 1, 1);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/x11/
xm_line.c 52 * Render an array of points into a pixmap, any pixel format.
66 unsigned long pixel = xmesa_color_to_pixel( xmesa,
70 XMesaSetForeground( dpy, gc, pixel );
134 unsigned long pixel; \
135 PACK_TRUECOLOR( pixel, color[0], color[1], color[2] );
137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel );
149 GLuint pixel = PACK_8A8B8G8R(color[0], color[1], color[2], color[3]);
154 #define PLOT(X,Y) *pixelPtr = pixel;
166 GLuint pixel = PACK_8A8R8G8B(color[0], color[1], color[2], color[3]);
171 #define PLOT(X,Y) *pixelPtr = pixel;
422 unsigned long pixel = xmesa_color_to_pixel(ctx, local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/x11/
xm_line.c 52 * Render an array of points into a pixmap, any pixel format.
66 unsigned long pixel = xmesa_color_to_pixel( xmesa,
70 XMesaSetForeground( dpy, gc, pixel );
134 unsigned long pixel; \
135 PACK_TRUECOLOR( pixel, color[0], color[1], color[2] );
137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel );
149 GLuint pixel = PACK_8A8B8G8R(color[0], color[1], color[2], color[3]);
154 #define PLOT(X,Y) *pixelPtr = pixel;
166 GLuint pixel = PACK_8A8R8G8B(color[0], color[1], color[2], color[3]);
171 #define PLOT(X,Y) *pixelPtr = pixel;
422 unsigned long pixel = xmesa_color_to_pixel(ctx, local
    [all...]
  /xsrc/external/mit/libXft/dist/src/
xftxlfd.c 93 int pixel; local
108 if (!(xlfd = XftGetInt (++xlfd, &pixel))) return NULL;
118 if (!pixel)
154 dpixel = (double) pixel;
159 if (pixel <= 0 && resy > 0)
  /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/
blend.c 72 VGint pixel; local
75 vgReadPixels(&pixel, 0, VG_sRGBA_8888, x, y, 1, 1);
76 rgba[0] = ((pixel >> 24) & 0xff) / 255.0f;
77 rgba[1] = ((pixel >> 16) & 0xff) / 255.0f;
78 rgba[2] = ((pixel >> 8) & 0xff) / 255.0f;
79 rgba[3] = ((pixel >> 0) & 0xff) / 255.0f;
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
uxa-unaccel.c 421 * Gets the 0,0 pixel of a pixmap. Used for doing solid fills of tiled pixmaps
428 CARD32 pixel; local
438 pixel = *(CARD32 *) fb;
441 pixel = *(CARD16 *) fb;
444 pixel = *(CARD8 *) fb;
449 return pixel;
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
uxa-unaccel.c 421 * Gets the 0,0 pixel of a pixmap. Used for doing solid fills of tiled pixmaps
428 CARD32 pixel; local
438 pixel = *(CARD32 *) fb;
441 pixel = *(CARD16 *) fb;
444 pixel = *(CARD8 *) fb;
449 return pixel;
  /xsrc/external/mit/xf86-video-intel-old/dist/uxa/
uxa-unaccel.c 406 * Gets the 0,0 pixel of a pixmap. Used for doing solid fills of tiled pixmaps
414 CARD32 pixel; local
424 pixel = *(CARD32 *)fb;
427 pixel = *(CARD16 *)fb;
430 pixel = *(CARD8 *)fb;
435 return pixel;
  /xsrc/external/mit/xorg-server/dist/include/
pixmap.h 81 unsigned long pixel; member in union:_PixUnion
85 ((isPixel) ? (a).pixel == (b).pixel : (a).pixmap == (b).pixmap)
  /xsrc/external/mit/xorg-server/dist/miext/shadow/
sh3224.c 52 CARD32 pixel; local
60 pixel = READ(src++);
61 Put24(dst, pixel);
94 pixel = READ(src++);
95 Put24(dst, pixel);
  /xsrc/external/mit/xorg-server/dist/test/bugs/
bug1354.c 16 * test_pixels. Then it captures central pixel from both Xephyr and Xserver above.
30 uint32_t pixel; local
42 pixel = xcb_image_get_pixel(image, WIDTH/2, HEIGHT/2);
44 return pixel;
  /xsrc/external/mit/xorg-server.old/dist/include/
pixmap.h 79 unsigned long pixel; member in union:_PixUnion
83 ((isPixel) ? (a).pixel == (b).pixel : (a).pixmap == (b).pixmap)
  /xsrc/external/mit/bdftopcf/dist/
fontxlfd.h 61 #define XLFD_NDIGITS 3 /* Round numbers in pixel and
72 /* Pixel and point fields are deprecated in favor of the
76 int pixel, point; member in struct:_FontScalable
  /xsrc/external/mit/freetype/dist/include/freetype/
ftcache.h 424 * pixel ::
426 * integer pixel character sizes. Otherwise, they are expressed as
430 * Only used when `pixel` is value~0 to indicate the horizontal
434 * Only used when `pixel` is value~0 to indicate the vertical
446 FT_Int pixel; member in struct:FTC_ScalerRec_

Completed in 21 milliseconds

1 2 3 4 5 6 7