Package org.lwjgl.opengl
Class ARBOcclusionQuery
- java.lang.Object
-
- org.lwjgl.opengl.ARBOcclusionQuery
-
public final class ARBOcclusionQuery extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static intGL_CURRENT_QUERY_ARBAccepted by the <pname> parameter of GetQueryivARB:static intGL_QUERY_COUNTER_BITS_ARBAccepted by the <pname> parameter of GetQueryivARB:static intGL_QUERY_RESULT_ARBAccepted by the <pname> parameter of GetQueryObjectivARB and GetQueryObjectuivARB:static intGL_QUERY_RESULT_AVAILABLE_ARBAccepted by the <pname> parameter of GetQueryObjectivARB and GetQueryObjectuivARB:static intGL_SAMPLES_PASSED_ARBAccepted by the <target> parameter of BeginQueryARB, EndQueryARB, and GetQueryivARB:
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static voidglBeginQueryARB(int target, int id)static voidglDeleteQueriesARB(int id)Overloads glDeleteQueriesARB.static voidglDeleteQueriesARB(IntBuffer ids)static voidglEndQueryARB(int target)static intglGenQueriesARB()Overloads glGenQueriesARB.static voidglGenQueriesARB(IntBuffer ids)static intglGetQueryARB(int target, int pname)Deprecated.Will be removed in 3.0.static voidglGetQueryARB(int target, int pname, IntBuffer params)static intglGetQueryiARB(int target, int pname)Overloads glGetQueryivARB.static voidglGetQueryObjectARB(int id, int pname, IntBuffer params)static intglGetQueryObjectiARB(int id, int pname)Overloads glGetQueryObjectivARB.static voidglGetQueryObjectuARB(int id, int pname, IntBuffer params)static intglGetQueryObjectuiARB(int id, int pname)Overloads glGetQueryObjectuivARB.static booleanglIsQueryARB(int id)
-
-
-
Field Detail
-
GL_SAMPLES_PASSED_ARB
public static final int GL_SAMPLES_PASSED_ARB
Accepted by the <target> parameter of BeginQueryARB, EndQueryARB, and GetQueryivARB:- See Also:
- Constant Field Values
-
GL_QUERY_COUNTER_BITS_ARB
public static final int GL_QUERY_COUNTER_BITS_ARB
Accepted by the <pname> parameter of GetQueryivARB:- See Also:
- Constant Field Values
-
GL_CURRENT_QUERY_ARB
public static final int GL_CURRENT_QUERY_ARB
Accepted by the <pname> parameter of GetQueryivARB:- See Also:
- Constant Field Values
-
GL_QUERY_RESULT_ARB
public static final int GL_QUERY_RESULT_ARB
Accepted by the <pname> parameter of GetQueryObjectivARB and GetQueryObjectuivARB:- See Also:
- Constant Field Values
-
GL_QUERY_RESULT_AVAILABLE_ARB
public static final int GL_QUERY_RESULT_AVAILABLE_ARB
Accepted by the <pname> parameter of GetQueryObjectivARB and GetQueryObjectuivARB:- See Also:
- Constant Field Values
-
-
Method Detail
-
glGenQueriesARB
public static void glGenQueriesARB(IntBuffer ids)
-
glGenQueriesARB
public static int glGenQueriesARB()
Overloads glGenQueriesARB.
-
glDeleteQueriesARB
public static void glDeleteQueriesARB(IntBuffer ids)
-
glDeleteQueriesARB
public static void glDeleteQueriesARB(int id)
Overloads glDeleteQueriesARB.
-
glIsQueryARB
public static boolean glIsQueryARB(int id)
-
glBeginQueryARB
public static void glBeginQueryARB(int target, int id)
-
glEndQueryARB
public static void glEndQueryARB(int target)
-
glGetQueryARB
public static void glGetQueryARB(int target, int pname, IntBuffer params)
-
glGetQueryARB
@Deprecated public static int glGetQueryARB(int target, int pname)
Deprecated.Will be removed in 3.0. UseglGetQueryiARB(int, int)instead.Overloads glGetQueryivARB.
-
glGetQueryiARB
public static int glGetQueryiARB(int target, int pname)Overloads glGetQueryivARB.
-
glGetQueryObjectARB
public static void glGetQueryObjectARB(int id, int pname, IntBuffer params)
-
glGetQueryObjectiARB
public static int glGetQueryObjectiARB(int id, int pname)Overloads glGetQueryObjectivARB.
-
glGetQueryObjectuARB
public static void glGetQueryObjectuARB(int id, int pname, IntBuffer params)
-
glGetQueryObjectuiARB
public static int glGetQueryObjectuiARB(int id, int pname)Overloads glGetQueryObjectuivARB.
-
-