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

glCreateFramebuffers - create framebuffer objects

C Specification

voidglCreateFramebuffers(GLsizein,GLuint*ids);

Description

glCreateFramebuffers returns n previously unused framebuffer names in framebuffers, each representing a
       new framebuffer object initialized to the default state.

Errors

GL_INVALID_VALUE is generated if n is negative.

Name

       glCreateFramebuffers - create framebuffer objects

Parameters

n
           Number of framebuffer objects to create.

       framebuffers
           Specifies an array in which names of the new framebuffer objects are stored.

See Also

glGenFramebuffers(), glBindFramebuffer(), glFramebufferRenderbuffer(), glFramebufferTexture(),

       glFramebufferTexture1D,

       glFramebufferTexture2D,

       glFramebufferTexture3D, glFramebufferTextureLayer(), glDeleteFramebuffers(), glIsFramebuffer()

Version Support

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

See Also