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

1 2 3 4 5 6 7 8 91011>>

  /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/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::__anon15007
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...]
  /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
MESA_release_buffers.spec 33 Therefore, Mesa cannot immediately detect when an X window or pixmap is
35 or pixmap.
  /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
MESA_release_buffers.spec 33 Therefore, Mesa cannot immediately detect when an X window or pixmap is
35 or pixmap.
  /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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
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...]
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...]
  /external/mesa3d/src/mesa/drivers/x11/
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...]
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
PixMapWrapper.py 2 QuickDraw PixMap data structure in a handy Python class. Also provides
19 # PixMap data structure element format (as used with struct)
42 # PixMap data structure element offset
66 """PixMapWrapper -- wraps the QD PixMap object in a Python class,
67 with methods to easily get/set various pixmap fields. Note: Use the
68 PixMap() method when passing to QD calls."""
143 def PixMap(self):
144 "Return a QuickDraw PixMap corresponding to this data."
150 """Draw this pixmap into the given (default current) grafport."""
158 Qd.CopyBits(self.PixMap(), port.GetPortBitMapForCopyBits(), src, tuple(dest)
    [all...]
  /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...]
xm_api.h 98 * GL_FALSE = use an off-screen pixmap for back buffer
163 * Create an XMesaBuffer from an X pixmap.
166 Pixmap p,
171 * Destroy an XMesaBuffer, but not the corresponding window or pixmap.
238 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free
257 * Texture from Pixmap
269 XMesaCreatePixmapTextureBuffer(XMesaVisual v, Pixmap p,
293 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
317 PIXMAP, /* GLX pixmap */
    [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...]
  /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...]
xm_api.h 98 * GL_FALSE = use an off-screen pixmap for back buffer
163 * Create an XMesaBuffer from an X pixmap.
166 Pixmap p,
171 * Destroy an XMesaBuffer, but not the corresponding window or pixmap.
238 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free
257 * Texture from Pixmap
269 XMesaCreatePixmapTextureBuffer(XMesaVisual v, Pixmap p,
293 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
317 PIXMAP, /* GLX pixmap */
    [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...]
  /external/chromium_org/ui/gl/
gl_surface_x11.cc 49 Pixmap pixmap_;
152 // Destroy the previous pixmap and graphics context.
162 // Recreate a pixmap to hold the frame.
173 // Recreate a graphics context for the pixmap.
196 // Copy the frame into the pixmap.
206 // Copy the pixmap to the window.
238 // Copy the frame into the pixmap.
252 // Copy the pixmap to the window.
  /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...]

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 91011>>