All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.opengl.ARBTransformFeedback2 Maven / Gradle / Ivy

Go to download

The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.opengl;

import java.nio.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.Checks.*;

/**
 * Native bindings to the ARB_transform_feedback2 extension.
 * 
 * 

The {@link EXTTransformFeedback EXT_transform_feedback} extension allows applications to capture primitives to one or more buffer objects when transformed by the GL. This * extension provides a few additional capabilities to these extensions, making transform feedback mode more useful.

* *

First, it provides transform feedback objects which encapsulate transform feedback-related state, allowing applications to replace the entire transform * feedback configuration in a single bind call. Second, it provides the ability to pause and resume transform feedback operations. When transform feedback * is paused, applications may render without transform feedback or may use transform feedback with different state and a different transform feedback * object. When transform feedback is resumed, additional primitives are captured and appended to previously captured primitives for the object.

* *

Additionally, this extension provides the ability to draw primitives captured in transform feedback mode without querying the captured primitive count. * The command {@link #glDrawTransformFeedback DrawTransformFeedback} is equivalent to {@code glDrawArrays(, 0, )}, where {@code count} is the number of * vertices captured to buffer objects during the last transform feedback capture operation on the transform feedback object used. This draw operation * only provides a vertex count -- it does not automatically set up vertex array state or vertex buffer object bindings, which must be done separately by * the application.

* *

Requires {@link GL20 GL20} or {@link ARBShaderObjects ARB_shader_objects} and {@link NVTransformFeedback NV_transform_feedback} or {@link EXTTransformFeedback EXT_transform_feedback}. * Promoted to core in {@link GL40 OpenGL 4.0}.

*/ public class ARBTransformFeedback2 { /** Accepted by the {@code target} parameter of BindTransformFeedback. */ public static final int GL_TRANSFORM_FEEDBACK = 0x8E22; /** Accepted by the {@code pname} parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv. */ public static final int GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED = 0x8E23, GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE = 0x8E24, GL_TRANSFORM_FEEDBACK_BINDING = 0x8E25; static { GL.initialize(); } protected ARBTransformFeedback2() { throw new UnsupportedOperationException(); } static boolean isAvailable(GLCapabilities caps) { return checkFunctions( caps.glBindTransformFeedback, caps.glDeleteTransformFeedbacks, caps.glGenTransformFeedbacks, caps.glIsTransformFeedback, caps.glPauseTransformFeedback, caps.glResumeTransformFeedback, caps.glDrawTransformFeedback ); } // --- [ glBindTransformFeedback ] --- /** * Binds a transform feedback object. * * @param target the target to which to bind the transform feedback object {@code id}. Must be:
{@link GL40C#GL_TRANSFORM_FEEDBACK TRANSFORM_FEEDBACK}
* @param id the name of a transform feedback object */ public static void glBindTransformFeedback(@NativeType("GLenum") int target, @NativeType("GLuint") int id) { GL40C.glBindTransformFeedback(target, id); } // --- [ glDeleteTransformFeedbacks ] --- /** * Unsafe version of: {@link #glDeleteTransformFeedbacks DeleteTransformFeedbacks} * * @param n the number of transform feedback objects to delete */ public static void nglDeleteTransformFeedbacks(int n, long ids) { GL40C.nglDeleteTransformFeedbacks(n, ids); } /** * Deletes transform feedback objects. * * @param ids an array of names of transform feedback objects to delete */ public static void glDeleteTransformFeedbacks(@NativeType("GLuint const *") IntBuffer ids) { GL40C.glDeleteTransformFeedbacks(ids); } /** Deletes transform feedback objects. */ public static void glDeleteTransformFeedbacks(@NativeType("GLuint const *") int id) { GL40C.glDeleteTransformFeedbacks(id); } // --- [ glGenTransformFeedbacks ] --- /** * Unsafe version of: {@link #glGenTransformFeedbacks GenTransformFeedbacks} * * @param n the number of transform feedback object names to reserve */ public static void nglGenTransformFeedbacks(int n, long ids) { GL40C.nglGenTransformFeedbacks(n, ids); } /** * Reserves transform feedback object names. * * @param ids an array of into which the reserved names will be written */ public static void glGenTransformFeedbacks(@NativeType("GLuint *") IntBuffer ids) { GL40C.glGenTransformFeedbacks(ids); } /** Reserves transform feedback object names. */ @NativeType("void") public static int glGenTransformFeedbacks() { return GL40C.glGenTransformFeedbacks(); } // --- [ glIsTransformFeedback ] --- /** * Determines if a name corresponds to a transform feedback object. * * @param id a value that may be the name of a transform feedback object */ @NativeType("GLboolean") public static boolean glIsTransformFeedback(@NativeType("GLuint") int id) { return GL40C.glIsTransformFeedback(id); } // --- [ glPauseTransformFeedback ] --- /** * Pauses transform feedback operations for the currently bound transform feedback object. * *

When transform feedback operations are paused, transform feedback is still considered active and changing most transform feedback state related to the * object results in an error. However, a new transform feedback object may be bound while transform feedback is paused. The error {@link GL11#GL_INVALID_OPERATION INVALID_OPERATION} * is generated by PauseTransformFeedback if the currently bound transform feedback is not active or is paused.

* *

When transform feedback is active and not paused, all geometric primitives generated must be compatible with the value of {@code primitiveMode} passed * to {@link GL30C#glBeginTransformFeedback BeginTransformFeedback}. The error {@link GL11#GL_INVALID_OPERATION INVALID_OPERATION} is generated by {@link GL11#glBegin Begin} or any operation that implicitly calls {@link GL11#glBegin Begin} * (such as {@link GL11C#glDrawElements DrawElements}) if {@code mode} is not one of the allowed modes. If a geometry shader is active, its output primitive type is used instead * of the {@code mode} parameter passed to {@link GL11#glBegin Begin} for the purposes of this error check. Any primitive type may be used while transform feedback is * paused.

*/ public static void glPauseTransformFeedback() { GL40C.glPauseTransformFeedback(); } // --- [ glResumeTransformFeedback ] --- /** * Resumes transform feedback operations for the currently bound transform feedback object. * *

The error {@link GL11#GL_INVALID_OPERATION INVALID_OPERATION} is generated by {@link #glResumeTransformFeedback ResumeTransformFeedback} if the currently bound transform feedback is not active or is not paused.

*/ public static void glResumeTransformFeedback() { GL40C.glResumeTransformFeedback(); } // --- [ glDrawTransformFeedback ] --- /** * Render primitives using a count derived from a transform feedback object. * * @param mode what kind of primitives to render. One of:
{@link GL11#GL_POINTS POINTS}{@link GL11#GL_LINE_STRIP LINE_STRIP}{@link GL11#GL_LINE_LOOP LINE_LOOP}{@link GL11#GL_LINES LINES}{@link GL11#GL_TRIANGLE_STRIP TRIANGLE_STRIP}{@link GL11#GL_TRIANGLE_FAN TRIANGLE_FAN}{@link GL11#GL_TRIANGLES TRIANGLES}
{@link GL32#GL_LINES_ADJACENCY LINES_ADJACENCY}{@link GL32#GL_LINE_STRIP_ADJACENCY LINE_STRIP_ADJACENCY}{@link GL32#GL_TRIANGLES_ADJACENCY TRIANGLES_ADJACENCY}{@link GL32#GL_TRIANGLE_STRIP_ADJACENCY TRIANGLE_STRIP_ADJACENCY}{@link GL40C#GL_PATCHES PATCHES}{@link GL11#GL_POLYGON POLYGON}{@link GL11#GL_QUADS QUADS}
{@link GL11#GL_QUAD_STRIP QUAD_STRIP}
* @param id the name of a transform feedback object from which to retrieve a primitive count */ public static void glDrawTransformFeedback(@NativeType("GLenum") int mode, @NativeType("GLuint") int id) { GL40C.glDrawTransformFeedback(mode, id); } /** Array version of: {@link #glDeleteTransformFeedbacks DeleteTransformFeedbacks} */ public static void glDeleteTransformFeedbacks(@NativeType("GLuint const *") int[] ids) { GL40C.glDeleteTransformFeedbacks(ids); } /** Array version of: {@link #glGenTransformFeedbacks GenTransformFeedbacks} */ public static void glGenTransformFeedbacks(@NativeType("GLuint *") int[] ids) { GL40C.glGenTransformFeedbacks(ids); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy