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

1 2

  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_trapezoid.c 39 * Creates an appropriate picture for temp mask use.
48 PicturePtr picture; local
66 picture = CreatePicture(0, &pixmap->drawable, pict_format,
69 return picture;
84 PicturePtr picture; local
117 picture = glamor_create_mask_picture(screen, dst, mask_format,
119 if (!picture)
122 image = pixman_image_create_bits(picture->format,
125 FreePicture(picture, 0);
134 pixmap = glamor_get_drawable_pixmap(picture->pDrawable)
    [all...]
  /src/external/mit/xorg/server/xorg-server/render/
Makefile 10 mirect.c mitrap.c mitri.c picture.c render.c
20 COPTS.picture.c= -Wno-error
  /src/external/mit/xorg/server/xorg-server.old/render/
Makefile 10 mirect.c mitrap.c mitri.c picture.c render.c
20 COPTS.picture.c= -Wno-error
  /xsrc/external/mit/xf86-video-intel/dist/test/
cursor-test.c 103 Picture picture; local
125 picture = XRenderCreatePicture(dpy, pixmap, XRenderFindStandardFormat(dpy, PictStandardARGB32), 0, NULL);
128 XDefineCursor(dpy, DefaultRootWindow(dpy), XRenderCreateCursor(dpy, picture, 0, 0));
129 XRenderFreePicture(dpy, picture);
lowlevel-blt-bench.c 96 static Picture source_pixmap(struct test_display *t, struct test_target *target, int format)
103 Picture picture; local
109 picture = XRenderCreatePicture(t->dpy, pixmap,
114 XRenderFillRectangle(t->dpy, PictOpSrc, picture, &render_color[0],
116 XRenderFillRectangle(t->dpy, PictOpSrc, picture, &render_color[1],
119 return picture;
122 static Picture source_a8r8g8b8(struct test_display *t, struct test_target *target)
127 static Picture source_x8r8g8b8(struct test_display *t, struct test_target *target)
132 static Picture source_a8(struct test_display *t, struct test_target *target
152 Picture picture; local
275 Picture picture; local
325 Picture picture; local
    [all...]
test.h 82 Picture picture; member in struct:test_target
  /xsrc/external/mit/xf86-video-intel-2014/dist/test/
cursor-test.c 103 Picture picture; local
125 picture = XRenderCreatePicture(dpy, pixmap, XRenderFindStandardFormat(dpy, PictStandardARGB32), 0, NULL);
128 XDefineCursor(dpy, DefaultRootWindow(dpy), XRenderCreateCursor(dpy, picture, 0, 0));
129 XRenderFreePicture(dpy, picture);
lowlevel-blt-bench.c 96 static Picture source_pixmap(struct test_display *t, struct test_target *target, int format)
103 Picture picture; local
109 picture = XRenderCreatePicture(t->dpy, pixmap,
114 XRenderFillRectangle(t->dpy, PictOpSrc, picture, &render_color[0],
116 XRenderFillRectangle(t->dpy, PictOpSrc, picture, &render_color[1],
119 return picture;
122 static Picture source_a8r8g8b8(struct test_display *t, struct test_target *target)
127 static Picture source_x8r8g8b8(struct test_display *t, struct test_target *target)
132 static Picture source_a8(struct test_display *t, struct test_target *target
152 Picture picture; local
275 Picture picture; local
325 Picture picture; local
    [all...]
test.h 82 Picture picture; member in struct:test_target
  /xsrc/external/mit/xorg-server/dist/hw/kdrive/ephyr/
ephyrcursor.c 133 xcb_render_picture_t picture; local
150 picture = xcb_generate_id(conn);
151 xcb_render_create_picture(conn, picture, source, get_argb_format(),
156 xcb_render_create_cursor(conn, hw->cursor, picture,
159 xcb_render_free_picture(conn, picture);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/bellagio/
vid_enc.c 776 static void enc_ControlPicture(omx_base_PortType *port, struct pipe_h264_enc_picture_desc *picture)
780 enc_ControlPicture_common(priv, picture);
790 struct pipe_h264_enc_picture_desc picture = {}; local
802 picture.picture_type = picture_type;
803 picture.pic_order_cnt = task->pic_order_cnt;
804 picture.base.profile = enc_TranslateOMXProfileToPipe(priv->profile_level.eProfile);
805 picture.base.entry_point = PIPE_VIDEO_ENTRYPOINT_ENCODE;
807 picture.not_referenced = true;
808 enc_ControlPicture(port, &picture);
811 priv->codec->begin_frame(priv->codec, vbuf, &picture.base)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/tizonia/
h264eprc.c 243 struct pipe_h264_enc_picture_desc picture = {}; local
255 picture.picture_type = picture_type;
256 picture.pic_order_cnt = task->pic_order_cnt;
258 picture.not_referenced = true;
259 enc_ControlPicture_common(priv, &picture);
262 priv->codec->begin_frame(priv->codec, vbuf, &picture.base);
264 priv->codec->end_frame(priv->codec, vbuf, &picture.base);
338 /* -------------- determine picture type --------- */
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/
vid_dec_common.h 99 } picture; \
182 } picture; member in struct:h264d_prc
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/omx/bellagio/
vid_enc.c 777 static void enc_ControlPicture(omx_base_PortType *port, struct pipe_h264_enc_picture_desc *picture)
781 enc_ControlPicture_common(priv, picture);
791 struct pipe_h264_enc_picture_desc picture = {}; local
803 picture.picture_type = picture_type;
804 picture.pic_order_cnt = task->pic_order_cnt;
805 picture.base.profile = enc_TranslateOMXProfileToPipe(priv->profile_level.eProfile);
806 picture.base.entry_point = PIPE_VIDEO_ENTRYPOINT_ENCODE;
808 picture.not_referenced = true;
809 enc_ControlPicture(port, &picture);
812 priv->codec->begin_frame(priv->codec, vbuf, &picture.base)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/omx/tizonia/
h264eprc.c 243 struct pipe_h264_enc_picture_desc picture = {}; local
255 picture.picture_type = picture_type;
256 picture.pic_order_cnt = task->pic_order_cnt;
258 picture.not_referenced = true;
259 enc_ControlPicture_common(priv, &picture);
262 priv->codec->begin_frame(priv->codec, vbuf, &picture.base);
264 priv->codec->end_frame(priv->codec, vbuf, &picture.base);
338 /* -------------- determine picture type --------- */
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/omx/
vid_dec_common.h 95 } picture; \
178 } picture; member in struct:h264d_prc
  /xsrc/external/mit/xeyes/dist/
EyesP.h 58 Picture picture; member in struct:__anon6657
59 Picture fill[PART_SHAPE];
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
uxa-priv.h 98 PicturePtr picture; /* Where the glyphs of the cache are stored */ member in struct:__anon7671
108 PicturePtr picture; member in struct:__anon7672
319 Bool uxa_picture_prepare_access(PicturePtr picture, int mode);
320 void uxa_picture_finish_access(PicturePtr picture, int mode);
uxa-glyphs.c 118 if (cache->picture)
119 FreePicture(cache->picture, 0);
159 PicturePtr picture; local
167 /* Now allocate the pixmap and picture */
181 picture = CreatePicture(0, &pixmap->drawable, pPictFormat,
187 if (!picture)
190 ValidatePicture(picture);
192 cache->picture = picture;
238 PixmapPtr pCachePixmap = (PixmapPtr) cache->picture->pDrawable
259 PicturePtr picture; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
uxa-priv.h 98 PicturePtr picture; /* Where the glyphs of the cache are stored */ member in struct:__anon8524
108 PicturePtr picture; member in struct:__anon8525
319 Bool uxa_picture_prepare_access(PicturePtr picture, int mode);
320 void uxa_picture_finish_access(PicturePtr picture, int mode);
  /xsrc/external/mit/xf86-video-intel-old/dist/uxa/
uxa-priv.h 130 PicturePtr picture; /* Where the glyphs of the cache are stored */ member in struct:__anon8981
131 int yOffset; /* y location within the picture where the cache starts */
  /xsrc/external/mit/xf86-video-qxl/dist/src/uxa/
uxa-priv.h 98 PicturePtr picture; /* Where the glyphs of the cache are stored */ member in struct:__anon9217
108 PicturePtr picture; member in struct:__anon9218
  /xsrc/external/mit/bdftopcf/dist/
bdfread.c 94 unsigned char *pInBits, *picture, *line = NULL; local
102 picture = malloc(widthBytes * height);
103 if (!picture) {
104 bdfError("Couldn't allocate picture (%d*%d)\n", widthBytes, height);
109 picture = NULL;
110 pCI->bits = (char *) picture;
129 if ((widthBits == 0) || (picture == NULL)) {
148 picture[nextByte++] = bdfHexByte(pInBits);
153 picture[nextByte++] = 0;
159 if (mask && picture[nextByte - 1] & ~mask)
    [all...]
  /xsrc/external/mit/libXfont/dist/src/bitmap/
bdfread.c 100 *picture, local
109 picture = malloc(widthBytes * height);
110 if (!picture) {
111 bdfError("Couldn't allocate picture (%d*%d)\n", widthBytes, height);
115 picture = NULL;
116 pCI->bits = (char *) picture;
152 picture[nextByte++] = bdfHexByte(pInBits);
157 picture[nextByte++] = 0;
162 if (mask && picture[nextByte - 1] & ~mask) {
163 picture[nextByte - 1] &= mask
    [all...]
  /xsrc/external/mit/libXfont2/dist/src/bitmap/
bdfread.c 102 *picture, local
111 picture = mallocarray(widthBytes, height);
112 if (!picture) {
113 bdfError("Couldn't allocate picture (%d*%d)\n", widthBytes, height);
117 picture = NULL;
118 pCI->bits = (char *) picture;
154 picture[nextByte++] = bdfHexByte(pInBits);
159 picture[nextByte++] = 0;
164 if (mask && picture[nextByte - 1] & ~mask) {
165 picture[nextByte - 1] &= mask
    [all...]

Completed in 41 milliseconds

1 2