Searched refs:pixmap (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11FontScaler_md.c45 static Pixmap pixmap = 0; variable
69 if (pixmap != 0) {
70 XFreePixmap (awt_display, pixmap);
75 pixmap = XCreatePixmap (awt_display, awt_defaultRoot, pixmapWidth,
77 if (pixmap == 0) {
80 pixmapGC = XCreateGC (awt_display, pixmap, 0, 0);
84 XFillRectangle (awt_display, pixmap, pixmapGC, 0, 0, pixmapWidth,
301 if ((pixmap == 0) || (width > pixmapWidth) || (height > pixmapHeight)) {
311 XFillRectangle(awt_display, pixmap, pixmapGC, 0, 0,
314 XDrawString16(awt_display, pixmap, pixmapG
[all...]
H A DX11SurfaceData.h83 Drawable pixmap; member in struct:__anon1034
111 jint bgPixel; /* bg pixel for the pixmap */
114 jint pmHeight; /* pixmap */
H A DX11SurfaceData.c310 xsdo->shmPMData.pixmap = 0;
398 if (xsdo->shmPMData.pixmap) {
399 XFreePixmap(awt_display, xsdo->shmPMData.pixmap);
400 xsdo->shmPMData.pixmap = 0;
491 xsdo->shmPMData.pixmap = xsdo->drawable;
641 Drawable pixmap; local
660 pixmap =
666 if (pixmap == 0) {
673 return pixmap;
683 /* we wouldn't be here if it's a shared pixmap, s
[all...]
H A DXRBackendNative.c329 (JNIEnv *env, jobject this, jint pixmap) {
330 XFreePixmap(awt_display, (Pixmap) pixmap);
328 Java_sun_java2d_xr_XRBackendNative_freePixmap(JNIEnv *env, jobject this, jint pixmap) argument
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/J2D_GL/
H A Dglx.h252 Pixmap pixmap );
254 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
308 Pixmap pixmap, const int *attribList );
310 extern void glXDestroyPixmap( Display *dpy, GLXPixmap pixmap );
452 Pixmap pixmap, Colormap cmap );
H A Dglxext.h374 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
375 typedef void ( * PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
488 typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
583 typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPMESAPROC) (Display *dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dimg_util_md.h32 XID pixmap; /* The X11 pixmap containing the image */ member in struct:__anon1009
33 XID mask; /* The X11 pixmap with the transparency mask */
34 int bgcolor; /* The current bg color installed in pixmap */
37 int dstW; /* The width of the destination pixmap */
38 int dstH; /* The height of the destination pixmap */
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackend.java46 public void freePixmap(int pixmap); argument
H A DXRBackendNative.java67 public native void freePixmap(int pixmap); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java385 XFreePixmap(display, pixmap)
387 Pixmap pixmap;
390 static native void XFreePixmap(long display, long pixmap); argument
480 static native void XSetWindowBackgroundPixmap(long display, long window, long pixmap); argument
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1582 (JNIEnv *env, jclass clazz, jlong display, jlong pixmap) {
1584 XFreePixmap((Display *)jlong_to_ptr(display), (Pixmap) pixmap);
1738 Java_sun_awt_X11_XlibWrapper_XSetWindowBackgroundPixmap(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong pixmap) argument
1741 XSetWindowBackgroundPixmap((Display*) jlong_to_ptr(display), (Window)window, (Pixmap)pixmap);
1581 Java_sun_awt_X11_XlibWrapper_XFreePixmap(JNIEnv *env, jclass clazz, jlong display, jlong pixmap) argument

Completed in 80 milliseconds