|
Java example source code file (XSurfaceData.java)
The XSurfaceData.java Java example source code
package sun.java2d.x11;
import java.awt.image.*;
import sun.awt.*;
import sun.java2d.*;
import sun.java2d.loops.*;
import sun.java2d.pipe.*;
public abstract class XSurfaceData extends SurfaceData {
static boolean isX11SurfaceDataInitialized = false;
public static boolean isX11SurfaceDataInitialized() {
return isX11SurfaceDataInitialized;
}
public static void setX11SurfaceDataInitialized() {
isX11SurfaceDataInitialized = true;
}
public XSurfaceData(SurfaceType surfaceType, ColorModel cm) {
super(surfaceType, cm);
}
protected native void initOps(X11ComponentPeer peer, X11GraphicsConfig gc, int depth);
protected static native long XCreateGC(long pXSData);
protected static native void XResetClip(long xgc);
protected static native void XSetClip(long xgc, int lox, int loy, int hix, int hiy, Region complexclip);
protected native void flushNativeSurface();
protected native boolean isDrawableValid();
protected native void setInvalid();
protected static native void XSetGraphicsExposures(long xgc, boolean needExposures);
}
Other Java examples (source code examples)Here is a short list of links related to this Java XSurfaceData.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.