logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

glGenTransformFeedbacks - reserve transform feedback object names

Associated Gets

glGet() with argument GL_TRANSFORM_FEEDBACK_BINDINGglIsTransformFeedback()

C Specification

voidglGenTransformFeedbacks(GLsizein,GLuint*ids);

Description

glGenTransformFeedbacks returns n previously unused transform feedback object names in ids. These names
       are marked as used, for the purposes of glGenTransformFeedbacks only, but they acquire transform feedback
       state only when they are first bound.

Name

       glGenTransformFeedbacks - reserve transform feedback object names

Parameters

n
           Specifies the number of transform feedback object names to reserve.

       ids
           Specifies an array of into which the reserved names will be written.

See Also

glDeleteTransformFeedbacks(), glBindTransformFeedback(), glIsTransformFeedback(),
       glBeginTransformFeedback(), glPauseTransformFeedback(), glResumeTransformFeedback(),

       glEndTransformFeedback

Version Support

       ┌─────────────────────────┬───────────────────────────────────────────────────────────────────────┐
       │                         │                OpenGLVersion                                         │
       ├─────────────────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
       │ Function2.02.13.03.13.23.34.04.14.24.34.44.5 │
       │ /                       │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Feature                 │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Name                    │     │     │     │     │     │     │     │     │     │     │     │     │
       ├─────────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glGenTransformFeedbacks │  -  │  -  │  -  │  -  │  -  │  -  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       └─────────────────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘

See Also