Class NVTransformFeedback2

java.lang.Object
org.lwjgl.opengl.NVTransformFeedback2

public class NVTransformFeedback2 extends Object
Native bindings to the NV_transform_feedback2 extension.

The NV_transform_feedback and EXT_transform_feedback extensions allow 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 encapsulating 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 DrawTransformFeedbackNV() is equivalent to glDrawArrays(<mode>, 0, <count>), where 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 OpenGL 1.5 and NV_transform_feedback or EXT_transform_feedback.

  • Field Details

    • GL_TRANSFORM_FEEDBACK_NV

      public static final int GL_TRANSFORM_FEEDBACK_NV
      Accepted by the target parameter of BindTransformFeedbackNV.
      See Also:
    • GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV

      public static final int GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV
      Accepted by the pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.
      See Also:
    • GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV

      public static final int GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV
      Accepted by the pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.
      See Also:
    • GL_TRANSFORM_FEEDBACK_BINDING_NV

      public static final int GL_TRANSFORM_FEEDBACK_BINDING_NV
      Accepted by the pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.
      See Also:
  • Method Details

    • glBindTransformFeedbackNV

      public static void glBindTransformFeedbackNV(int target, int id)
    • nglDeleteTransformFeedbacksNV

      public static void nglDeleteTransformFeedbacksNV(int n, long ids)
    • glDeleteTransformFeedbacksNV

      public static void glDeleteTransformFeedbacksNV(IntBuffer ids)
    • glDeleteTransformFeedbacksNV

      public static void glDeleteTransformFeedbacksNV(int id)
    • nglGenTransformFeedbacksNV

      public static void nglGenTransformFeedbacksNV(int n, long ids)
    • glGenTransformFeedbacksNV

      public static void glGenTransformFeedbacksNV(IntBuffer ids)
    • glGenTransformFeedbacksNV

      public static int glGenTransformFeedbacksNV()
    • glIsTransformFeedbackNV

      public static boolean glIsTransformFeedbackNV(int id)
    • glPauseTransformFeedbackNV

      public static void glPauseTransformFeedbackNV()
    • glResumeTransformFeedbackNV

      public static void glResumeTransformFeedbackNV()
    • glDrawTransformFeedbackNV

      public static void glDrawTransformFeedbackNV(int mode, int id)
    • glDeleteTransformFeedbacksNV

      public static void glDeleteTransformFeedbacksNV(int[] ids)
      Array version of: DeleteTransformFeedbacksNV
    • glGenTransformFeedbacksNV

      public static void glGenTransformFeedbacksNV(int[] ids)
      Array version of: GenTransformFeedbacksNV