~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/doc/man/GL/gl/deletetextures.3gl

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'\" e
 
2
'\"! eqn | mmdoc
 
3
'\"macro stdmacro
 
4
.ds Vn Version 1.2
 
5
.ds Dt 24 September 1999
 
6
.ds Re Release 1.2.1
 
7
.ds Dp Jan 14 18:30
 
8
.ds Dm 01 deletetex
 
9
.ds Xs 39225 4 deletetextures.gl
 
10
.TH GLDELETETEXTURES 3G
 
11
.SH NAME
 
12
.B "glDeleteTextures
 
13
\- delete named textures
 
14
 
 
15
.SH C SPECIFICATION
 
16
void \f3glDeleteTextures\fP(
 
17
GLsizei \fIn\fP,
 
18
.nf
 
19
.ta \w'\f3void \fPglDeleteTextures( 'u
 
20
        const GLuint \fI*textures\fP )
 
21
.fi
 
22
 
 
23
.SH PARAMETERS
 
24
.TP \w'\fItextures\fP\ \ 'u 
 
25
\f2n\fP
 
26
Specifies the number of textures to be deleted.
 
27
.TP
 
28
\f2textures\fP
 
29
Specifies an array of textures to be deleted. 
 
30
.SH DESCRIPTION
 
31
\%\f3glDeleteTextures\fP deletes \f2n\fP textures named by the elements of the array \f2textures\fP.
 
32
After a texture is deleted, it has no contents or dimensionality,
 
33
and its name is free for reuse (for example by \%\f3glGenTextures\fP).
 
34
If a texture that is currently bound is deleted, the binding reverts
 
35
to 0 (the default texture).
 
36
.P
 
37
\%\f3glDeleteTextures\fP silently ignores 0's and names that do not correspond to
 
38
existing textures.
 
39
.SH NOTES
 
40
\%\f3glDeleteTextures\fP is available only if the GL version is 1.1 or greater.
 
41
.SH ERRORS
 
42
\%\f3GL_INVALID_VALUE\fP is generated if \f2n\fP is negative.
 
43
.P
 
44
\%\f3GL_INVALID_OPERATION\fP is generated if \%\f3glDeleteTextures\fP is executed
 
45
between the execution of \%\f3glBegin\fP and the corresponding
 
46
execution of \%\f3glEnd\fP.
 
47
.SH ASSOCIATED GETS
 
48
\%\f3glIsTexture\fP
 
49
.SH SEE ALSO
 
50
\%\f3glAreTexturesResident(3G)\fP, 
 
51
\%\f3glBindTexture(3G)\fP,
 
52
\%\f3glCopyTexImage1D(3G)\fP,
 
53
\%\f3glCopyTexImage2D(3G)\fP,
 
54
\%\f3glGenTextures(3G)\fP,
 
55
\%\f3glGet(3G)\fP,
 
56
\%\f3glGetTexParameter(3G)\fP,
 
57
\%\f3glPrioritizeTextures(3G)\fP,
 
58
\%\f3glTexImage1D(3G)\fP,
 
59
\%\f3glTexImage2D(3G)\fP,
 
60
\%\f3glTexParameter(3G)\fP