You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/TQGL.java

41 lines
1.5 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQGL implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected TQGL(Class dummy){}
public static final int DoubleBuffer = 0x0001;
public static final int DepthBuffer = 0x0002;
public static final int Rgba = 0x0004;
public static final int AlphaChannel = 0x0008;
public static final int AccumBuffer = 0x0010;
public static final int StencilBuffer = 0x0020;
public static final int StereoBuffers = 0x0040;
public static final int DirectRendering = 0x0080;
public static final int HasOverlay = 0x0100;
public static final int SingleBuffer = DoubleBuffer<<16;
public static final int NoDepthBuffer = DepthBuffer<<16;
public static final int ColorIndex = Rgba<<16;
public static final int NoAlphaChannel = AlphaChannel<<16;
public static final int NoAccumBuffer = AccumBuffer<<16;
public static final int NoStencilBuffer = StencilBuffer<<16;
public static final int NoStereoBuffers = StereoBuffers<<16;
public static final int IndirectRendering = DirectRendering<<16;
public static final int NoOverlay = HasOverlay<<16;
public TQGL() {
newTQGL();
}
private native void newTQGL();
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */
public native void dispose();
/** Has the wrapped C++ instance been deleted? */
public native boolean isDisposed();
}