summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QGL.java
blob: 137b480a671c04a40b9097450de4933acb53f459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class QGL implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected QGL(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 QGL() {
		newQGL();
	}
	private native void newQGL();
	/** 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();
}