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

glDeleteQueries - delete named query objects

Associated Gets

glIsQuery()

C Specification

voidglDeleteQueries(GLsizein,constGLuint*ids);

Description

glDeleteQueries deletes n query objects named by the elements of the array ids. After a query object is
       deleted, it has no contents, and its name is free for reuse (for example by glGenQueries()).

       glDeleteQueries silently ignores 0's and names that do not correspond to existing query objects.

Errors

GL_INVALID_VALUE is generated if n is negative.

Name

       glDeleteQueries - delete named query objects

Parameters

n
           Specifies the number of query objects to be deleted.

       ids
           Specifies an array of query objects to be deleted.

See Also

glBeginQuery(),

       glEndQuery, glGenQueries(), glGetQueryiv(), glGetQueryObject()

Version Support

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

See Also