HomeSort by relevance Sort by last modified time
    Searched refs:pixmap (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_pixmap.c 61 struct apple_glx_pixmap *p = &d->types.pixmap;
93 struct apple_glx_pixmap *p = &d->types.pixmap;
114 apple_glx_diagnostic("destroyed pixmap buffer for: 0x%lx\n", d->drawable);
119 apple_glx_pixmap_create(Display * dpy, int screen, Pixmap pixmap,
129 if (apple_glx_drawable_create(dpy, screen, pixmap, &d, &callbacks))
134 p = &d->types.pixmap;
136 p->xpixmap = pixmap;
139 if (!XAppleDRICreatePixmap(dpy, screen, pixmap,
182 apple_glx_diagnostic("created: pixmap buffer for 0x%lx\n", d->drawable)
    [all...]
apple_glx_drawable.h 71 GLXPbuffer xid; /* our pixmap */
108 struct apple_glx_pixmap pixmap; member in union:apple_glx_drawable::__anon15005
216 bool apple_glx_pixmap_create(Display * dpy, int screen, Pixmap pixmap,
220 bool apple_glx_pixmap_destroy(Display * dpy, Pixmap pixmap);
222 bool apple_glx_pixmap_query(GLXPixmap pixmap, int attribute,
  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 61 struct apple_glx_pixmap *p = &d->types.pixmap;
93 struct apple_glx_pixmap *p = &d->types.pixmap;
114 apple_glx_diagnostic("destroyed pixmap buffer for: 0x%lx\n", d->drawable);
119 apple_glx_pixmap_create(Display * dpy, int screen, Pixmap pixmap,
129 if (apple_glx_drawable_create(dpy, screen, pixmap, &d, &callbacks))
134 p = &d->types.pixmap;
136 p->xpixmap = pixmap;
139 if (!XAppleDRICreatePixmap(dpy, screen, pixmap,
182 apple_glx_diagnostic("created: pixmap buffer for 0x%lx\n", d->drawable)
    [all...]
apple_glx_drawable.h 71 GLXPbuffer xid; /* our pixmap */
108 struct apple_glx_pixmap pixmap; member in union:apple_glx_drawable::__anon25347
216 bool apple_glx_pixmap_create(Display * dpy, int screen, Pixmap pixmap,
220 bool apple_glx_pixmap_destroy(Display * dpy, Pixmap pixmap);
222 bool apple_glx_pixmap_query(GLXPixmap pixmap, int attribute,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_composite.h 26 struct exa_pixmap_priv *pixmap,
29 struct exa_pixmap_priv *pixmap,
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.h 26 struct exa_pixmap_priv *pixmap,
29 struct exa_pixmap_priv *pixmap,
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 52 // backing store in the X server, as a pixmap. Thus expose events just require
90 Pixmap pixmap,
99 BackingStoreEvents(TransportDIB* dib, Display* d, Picture pic, Pixmap pix,
104 pixmap(pix),
116 Pixmap pixmap; member in struct:content::__anon10096::XSyncHandler::BackingStoreEvents
147 Pixmap pixmap,
150 dib, display, picture, pixmap, completion_callback))
319 Pixmap pixmap = XCreatePixmap(display_, root_window_, width, height, local
377 Pixmap pixmap; local
    [all...]
  /external/chromium_org/ui/base/gtk/
gtk_compat.h 72 inline void gdk_pixmap_get_size(GdkPixmap* pixmap, gint* width, gint* height) {
73 gdk_drawable_get_size(GDK_DRAWABLE(pixmap), width, height);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 116 * use only one reusable pixmap with the maximum dimensions.
117 * draw the entire font into a single pixmap (careful with
132 Pixmap pixmap; local
135 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
137 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
143 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
145 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
156 XFreePixmap(dpy, pixmap);
214 Pixmap pixmap local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
xfont.c 122 * use only one reusable pixmap with the maximum dimensions.
123 * draw the entire font into a single pixmap (careful with
138 Pixmap pixmap; local
141 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
143 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
149 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
151 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
162 XFreePixmap(dpy, pixmap);
219 Pixmap pixmap local
    [all...]
glx_pbuffer.c 494 Pixmap pixmap; local
557 pixmap = XCreatePixmap(dpy, RootWindow(dpy, config->screen),
560 if (!CreateDRIDrawable(dpy, config, pixmap, id, attrib_list, i)) {
562 XFreePixmap(dpy, pixmap);
866 glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap,
874 if (apple_glx_pixmap_create(dpy, modes->screen, pixmap, modes))
877 return pixmap;
880 (Drawable) pixmap, attrib_list, X_GLXCreatePixmap)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xfonts.c 123 * use only one reusable pixmap with the maximum dimensions.
124 * draw the entire font into a single pixmap (careful with
139 Pixmap pixmap; local
142 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
144 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
150 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
152 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
163 XFreePixmap(dpy, pixmap);
221 Pixmap pixmap local
    [all...]
realglx.h 48 _real_glXCreateGLXPixmap( Display *dpy, XVisualInfo *visinfo, Pixmap pixmap );
52 Pixmap pixmap, Colormap cmap );
55 _real_glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
132 _real_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap,
136 _real_glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
224 _real_glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
    [all...]
xm_buffer.c 168 * Setup an off-screen pixmap or Ximage to use as the back buffer.
214 b->backxrb->pixmap = None;
217 /* Free the old back pixmap */
218 if (b->backxrb->pixmap) {
219 XMesaFreePixmap(b->xm_visual->display, b->backxrb->pixmap);
220 b->backxrb->pixmap = 0;
224 /* Allocate new back pixmap */
225 b->backxrb->pixmap = XMesaCreatePixmap(b->xm_visual->display,
232 b->backxrb->drawable = b->backxrb->pixmap;
240 /* XXX Note: the ximage or Pixmap attached to this renderbuffe
    [all...]
glxapi.h 67 GLXPixmap (*CreateGLXPixmap)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap);
69 void (*DestroyGLXPixmap)(Display *dpy, GLXPixmap pixmap);
94 GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList);
97 void (*DestroyPixmap)(Display *dpy, GLXPixmap pixmap);
139 GLXPixmap (*CreateGLXPixmapWithConfigSGIX)(Display *, GLXFBConfigSGIX, Pixmap);
185 GLXPixmap (*CreateGLXPixmapMESA)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap, Colormap cmap);
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 116 * use only one reusable pixmap with the maximum dimensions.
117 * draw the entire font into a single pixmap (careful with
132 Pixmap pixmap; local
135 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
137 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
143 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
145 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
156 XFreePixmap(dpy, pixmap);
214 Pixmap pixmap local
    [all...]
  /external/mesa3d/src/glx/
xfont.c 122 * use only one reusable pixmap with the maximum dimensions.
123 * draw the entire font into a single pixmap (careful with
138 Pixmap pixmap; local
141 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
143 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
149 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
151 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
162 XFreePixmap(dpy, pixmap);
219 Pixmap pixmap local
    [all...]
glx_pbuffer.c 494 Pixmap pixmap; local
557 pixmap = XCreatePixmap(dpy, RootWindow(dpy, config->screen),
560 if (!CreateDRIDrawable(dpy, config, pixmap, id, attrib_list, i)) {
562 XFreePixmap(dpy, pixmap);
866 glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap,
874 if (apple_glx_pixmap_create(dpy, modes->screen, pixmap, modes))
877 return pixmap;
880 (Drawable) pixmap, attrib_list, X_GLXCreatePixmap)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 123 * use only one reusable pixmap with the maximum dimensions.
124 * draw the entire font into a single pixmap (careful with
139 Pixmap pixmap; local
142 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
144 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
150 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
152 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
163 XFreePixmap(dpy, pixmap);
221 Pixmap pixmap local
    [all...]
realglx.h 48 _real_glXCreateGLXPixmap( Display *dpy, XVisualInfo *visinfo, Pixmap pixmap );
52 Pixmap pixmap, Colormap cmap );
55 _real_glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
132 _real_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap,
136 _real_glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
224 _real_glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
    [all...]
xm_buffer.c 168 * Setup an off-screen pixmap or Ximage to use as the back buffer.
214 b->backxrb->pixmap = None;
217 /* Free the old back pixmap */
218 if (b->backxrb->pixmap) {
219 XMesaFreePixmap(b->xm_visual->display, b->backxrb->pixmap);
220 b->backxrb->pixmap = 0;
224 /* Allocate new back pixmap */
225 b->backxrb->pixmap = XMesaCreatePixmap(b->xm_visual->display,
232 b->backxrb->drawable = b->backxrb->pixmap;
240 /* XXX Note: the ximage or Pixmap attached to this renderbuffe
    [all...]
glxapi.h 67 GLXPixmap (*CreateGLXPixmap)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap);
69 void (*DestroyGLXPixmap)(Display *dpy, GLXPixmap pixmap);
94 GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList);
97 void (*DestroyPixmap)(Display *dpy, GLXPixmap pixmap);
139 GLXPixmap (*CreateGLXPixmapWithConfigSGIX)(Display *, GLXFBConfigSGIX, Pixmap);
185 GLXPixmap (*CreateGLXPixmapMESA)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap, Colormap cmap);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_pixmap_colormap.spec 53 Pixmap pixmap, Colormap cmap );
70 Pixmap pixmap, Colormap cmap );
73 rendered into the pixmap may then be copied to a window (which uses the
  /external/mesa3d/docs/
MESA_pixmap_colormap.spec 53 Pixmap pixmap, Colormap cmap );
70 Pixmap pixmap, Colormap cmap );
73 rendered into the pixmap may then be copied to a window (which uses the
  /external/chromium_org/media/tools/player_x11/
x11_video_renderer.cc 121 // If XRender is used, we'll upload the image to a pixmap. And then
122 // creats a picture from the pixmap and composite the picture over
142 // Creates a pixmap and uploads from the XImage.
143 unsigned long pixmap = XCreatePixmap(display_, window_, local
146 GC gc = XCreateGC(display_, pixmap, 0, NULL);
147 XPutImage(display_, pixmap, gc, &image,
154 // Creates the picture representing the pixmap.
156 display_, pixmap, GetRenderARGB32Format(display_), 0, NULL);
164 XFreePixmap(display_, pixmap);
170 // TODO(hclam): Upload the image to a pixmap and do XCopyArea(
    [all...]

Completed in 496 milliseconds

1 2 3 4 5 6