org.lwjgl.opengl.ARBTransformFeedbackOverflowQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opengl Show documentation
Show all versions of lwjgl-opengl Show documentation
The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengl;
/**
* Native bindings to the ARB_transform_feedback_overflow_query extension.
*
* This extension adds new query types which can be used to detect overflow of transform feedback buffers. The new query types are also accepted by
* conditional rendering commands.
*
* Requires {@link GL30 OpenGL 3.0}.
*/
public final class ARBTransformFeedbackOverflowQuery {
/**
* Accepted by the {@code target} parameter of {@link GL15#glBeginQuery BeginQuery}, {@link GL15#glEndQuery EndQuery}, {@link GL15#glGetQueryiv GetQueryiv},
* {@link GL40#glBeginQueryIndexed BeginQueryIndexed}, {@link GL40#glEndQueryIndexed EndQueryIndexed} and {@link GL40#glGetQueryIndexediv GetQueryIndexediv}.
*/
public static final int
GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB = 0x82EC,
GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB = 0x82ED;
private ARBTransformFeedbackOverflowQuery() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy