HomeSort by relevance Sort by last modified time
    Searched refs:pixmap (Results 26 - 50 of 136) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/mesa/src/src/glx/
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/glx/
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/include/GL/
glx.h 217 Pixmap pixmap );
219 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
273 Pixmap pixmap, const int *attribList );
275 extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
310 typedef GLXPixmap (* PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
311 typedef void (* PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
  /external/mesa3d/include/GL/
glx.h 217 Pixmap pixmap );
219 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
273 Pixmap pixmap, const int *attribList );
275 extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
310 typedef GLXPixmap (* PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
311 typedef void (* PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
glx_empty.c 157 Pixmap pixmap, Colormap cmap)
161 (void) pixmap;
230 glXCreateGLXPixmapWithConfigSGIX(Display * dpy, void *config, Pixmap p)
appledri.h 120 Bool XAppleDRIDestroyPixmap(Display * dpy, Pixmap pixmap);
  /external/mesa3d/src/glx/apple/
glx_empty.c 157 Pixmap pixmap, Colormap cmap)
161 (void) pixmap;
230 glXCreateGLXPixmapWithConfigSGIX(Display * dpy, void *config, Pixmap p)
appledri.h 120 Bool XAppleDRIDestroyPixmap(Display * dpy, Pixmap pixmap);
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_gtk.cc 239 GdkPixmap* pixmap = gdk_pixmap_new(NULL, size.width(), size.height(), 1); local
240 cairo_t* cairo_context = gdk_cairo_create(GDK_DRAWABLE(pixmap));
245 // Blit the rendered bitmap into a pixmap. Any pixel set in the pixmap will
273 gdk_window_shape_combine_mask(container_->window, pixmap, 0, 0);
274 g_object_unref(pixmap);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
glxapi.c 224 glXCreateGLXPixmap(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap)
230 return (t->CreateGLXPixmap)(dpy, visinfo, pixmap);
248 glXDestroyGLXPixmap(Display *dpy, GLXPixmap pixmap)
254 (t->DestroyGLXPixmap)(dpy, pixmap);
472 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList)
478 return (t->CreatePixmap)(dpy, config, pixmap, attribList);
505 glXDestroyPixmap(Display *dpy, GLXPixmap pixmap)
511 (t->DestroyPixmap)(dpy, pixmap);
    [all...]
xm_dd.c 102 * Clear the front or back color buffer, if it's implemented with a pixmap.
112 assert(xrb->pixmap);
115 assert(xrb->pixmap);
118 XMesaFillRectangle( xmesa->display, xrb->pixmap, xmbuf->cleargc,
323 xrb->pixmap && /* drawing to pixmap or window */
416 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
456 xrb->pixmap && /* drawing to pixmap or window */
549 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h)
    [all...]
fakeglx.c     [all...]
xm_api.c 112 * 2 = shared Pixmap support available also
237 * Return the size of the window (or pixmap) that corresponds to the
250 stat = get_drawable_size(dpy, b->frontxrb->pixmap, width, height);
274 * \param d the corresponding X drawable (window or pixmap)
275 * \param type either WINDOW, PIXMAP or PBUFFER, describing d
286 ASSERT(type == WINDOW || type == PIXMAP || type == PBUFFER);
310 b->frontxrb->pixmap = (XMesaPixmap) d;
553 * \param window the window/pixmap we're rendering into
554 * \param cmap the colormap associated with the window/pixmap
607 ASSERT(b->frontxrb->pixmap == (XMesaPixmap) window)
    [all...]
xmesa.h 119 * GL_FALSE = use an off-screen pixmap for back buffer
182 * Create an XMesaBuffer from an X pixmap.
190 * Destroy an XMesaBuffer, but not the corresponding window or pixmap.
267 * Return a pointer to the Pixmap or XImage being used as the back
271 * Output: pixmap - pointer to back buffer's Pixmap, or 0
277 XMesaPixmap *pixmap,
316 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free
378 * Texture from Pixmap
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 224 glXCreateGLXPixmap(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap)
230 return (t->CreateGLXPixmap)(dpy, visinfo, pixmap);
248 glXDestroyGLXPixmap(Display *dpy, GLXPixmap pixmap)
254 (t->DestroyGLXPixmap)(dpy, pixmap);
472 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList)
478 return (t->CreatePixmap)(dpy, config, pixmap, attribList);
505 glXDestroyPixmap(Display *dpy, GLXPixmap pixmap)
511 (t->DestroyPixmap)(dpy, pixmap);
    [all...]
xm_dd.c 102 * Clear the front or back color buffer, if it's implemented with a pixmap.
112 assert(xrb->pixmap);
115 assert(xrb->pixmap);
118 XMesaFillRectangle( xmesa->display, xrb->pixmap, xmbuf->cleargc,
323 xrb->pixmap && /* drawing to pixmap or window */
416 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
456 xrb->pixmap && /* drawing to pixmap or window */
549 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h)
    [all...]
fakeglx.c     [all...]
xm_api.c 112 * 2 = shared Pixmap support available also
237 * Return the size of the window (or pixmap) that corresponds to the
250 stat = get_drawable_size(dpy, b->frontxrb->pixmap, width, height);
274 * \param d the corresponding X drawable (window or pixmap)
275 * \param type either WINDOW, PIXMAP or PBUFFER, describing d
286 ASSERT(type == WINDOW || type == PIXMAP || type == PBUFFER);
310 b->frontxrb->pixmap = (XMesaPixmap) d;
553 * \param window the window/pixmap we're rendering into
554 * \param cmap the colormap associated with the window/pixmap
607 ASSERT(b->frontxrb->pixmap == (XMesaPixmap) window)
    [all...]
xmesa.h 119 * GL_FALSE = use an off-screen pixmap for back buffer
182 * Create an XMesaBuffer from an X pixmap.
190 * Destroy an XMesaBuffer, but not the corresponding window or pixmap.
267 * Return a pointer to the Pixmap or XImage being used as the back
271 * Output: pixmap - pointer to back buffer's Pixmap, or 0
277 XMesaPixmap *pixmap,
316 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free
378 * Texture from Pixmap
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_gtk.cc 283 // relative to the containing window's origin, so our pixmap must be from the
289 // | pixmap +-------------------+ |
312 // are relative to, nor does it define what the pixmap is relative to.
323 // that virtual scroll). The pixmap is also relative to the window. It always
327 // pixmap, or render the wrong pixels.
339 // | | | H = pixmap | | | H
390 // Construct the paint message, targeting the pixmap.
401 Pixmap pixmap = None; local
410 // we can not let the plugin directly draw over the shared memory pixmap
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_composite.c 531 struct exa_pixmap_priv *pixmap,
534 struct pipe_surface *dst_surf = xorg_gpu_surface(exa->pipe, pixmap);
538 pixel_to_float4(fg, exa->solid_color, pixmap->tex->format);
553 pixmap->width, pixmap->height);
569 struct exa_pixmap_priv *pixmap,
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.c 531 struct exa_pixmap_priv *pixmap,
534 struct pipe_surface *dst_surf = xorg_gpu_surface(exa->pipe, pixmap);
538 pixel_to_float4(fg, exa->solid_color, pixmap->tex->format);
553 pixmap->width, pixmap->height);
569 struct exa_pixmap_priv *pixmap,
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
dragged_view_gtk.cc 336 GdkPixmap* pixmap = gdk_pixmap_new(NULL, size.width(), size.height(), 1); local
337 cairo_t* cairo_context = gdk_cairo_create(GDK_DRAWABLE(pixmap));
342 // Blit the rendered bitmap into a pixmap. Any pixel set in the pixmap will
378 gdk_window_shape_combine_mask(gdk_window, pixmap, 0, 0);
379 g_object_unref(pixmap);
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 290 egl_native_pixmap_t pixmap; local
291 pixmap.version = sizeof(pixmap);
292 pixmap.width = nativeBitmap->width();
293 pixmap.height = nativeBitmap->height();
294 pixmap.stride = nativeBitmap->rowBytes() / nativeBitmap->bytesPerPixel();
295 pixmap.format = convertPixelFormat(nativeBitmap->config());
296 pixmap.data = (uint8_t*)ref->pixels();
299 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
glx.h 207 Pixmap pixmap );
209 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
263 Pixmap pixmap, const int *attribList );
265 extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );

Completed in 436 milliseconds

12 3 4 5 6