1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/_glDeleteTextures__0010000010000000.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

44 lines
1.1 KiB
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:18:51}}
'''_glDeleteTextures:''' delete named textures
{{PageSyntax}}
: SUB _glDeleteTextures (BYVAL n AS LONG, textures AS _UNSIGNED LONG)
: void '''_glDeleteTextures'''(GLsizei {{Parameter|n}}, const GLuint * {{Parameter|textures}});
; n
: Specifies the number of textures to be deleted.
; textures
: Specifies an array of textures to be deleted.
{{PageDescription}}
'''_glDeleteTextures''' deletes {{Parameter|n}} textures named by the elements of the array {{Parameter|textures}}. After a texture is deleted, it has no contents or dimensionality, and its name is free for reuse (for example by {{KW|_glGenTextures}}). If a texture that is currently bound is deleted, the binding reverts to 0 (the default texture).
'''_glDeleteTextures''' silently ignores 0's and names that do not correspond to existing textures.
{{PageErrors}}
{{KW|_GL_INVALID_VALUE}} is generated if {{Parameter|n}} is negative.
{{PageUseWith}}
{{KW|_glIsTexture}}
{{PageSeeAlso}}
[[_GL|SUB _GL]]
{{KW|_glBindTexture}}, {{KW|_glGenTextures}}, {{KW|_glIsTexture}}
{{PageCopyright}}