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

« back to all changes in this revision

Viewing changes to unix/xc/extras/ogl-sample/main/doc/man/mangl/standard/pushmatrix.gl

  • 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
_C_ License Applicability. Except to the extent portions of this file are
 
2
_C_ made subject to an alternative license as permitted in the SGI Free
 
3
_C_ Software License B, Version 1.1 (the "License"), the contents of this
 
4
_C_ file are subject only to the provisions of the License. You may not use
 
5
_C_ this file except in compliance with the License. You may obtain a copy
 
6
_C_ of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
 
7
_C_ Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
 
8
_C_ 
 
9
_C_ http://oss.sgi.com/projects/FreeB
 
10
_C_ 
 
11
_C_ Note that, as provided in the License, the Software is distributed on an
 
12
_C_ "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
 
13
_C_ DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
 
14
_C_ CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
 
15
_C_ PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
 
16
_C_ 
 
17
_C_ Original Code. The Original Code is: OpenGL Sample Implementation,
 
18
_C_ Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
 
19
_C_ Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
 
20
_C_ Copyright in any portions created by third parties is as indicated
 
21
_C_ elsewhere herein. All Rights Reserved.
 
22
_C_ 
 
23
_C_ Additional Notice Provisions: The application programming interfaces
 
24
_C_ established by SGI in conjunction with the Original Code are The
 
25
_C_ OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
 
26
_C_ April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
 
27
_C_ 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
 
28
_C_ Window System(R) (Version 1.3), released October 19, 1998. This software
 
29
_C_ was created using the OpenGL(R) version 1.2.1 Sample Implementation
 
30
_C_ published by SGI, but has not been independently verified as being
 
31
_C_ compliant with the OpenGL(R) version 1.2.1 Specification.
 
32
_C_
 
33
_C_ The first character in this file must be an '_'!
 
34
_C_ Anything on a line after _C_ is ignored
 
35
_header(PushMatrix,push and pop the current matrix stack)
 
36
_names(PushMatrix)
 
37
_names(PopMatrix)
 
38
.SH DESCRIPTION
 
39
There is a stack of matrices for each of the matrix modes.
 
40
In _const(MODELVIEW) mode,
 
41
the stack depth is at least 32.
 
42
In the other modes,
 
43
_const(COLOR), const(PROJECTION), and _const(TEXTURE),
 
44
the depth is at least 2.
 
45
The current matrix in any mode is the matrix on the top of the stack
 
46
for that mode.
 
47
.P
 
48
_cmnd pushes the current matrix stack down by one,
 
49
duplicating the current matrix.
 
50
That is,
 
51
after a _cmnd call,
 
52
the matrix on top of the stack is identical to the one below it.
 
53
.P
 
54
_cmnd(PopMatrix) pops the current matrix stack,
 
55
replacing the current matrix with the one below it on the stack. 
 
56
.P
 
57
Initially, each of the stacks contains one matrix, an identity matrix.
 
58
.P
 
59
It is an error to push a full matrix stack,
 
60
or to pop a matrix stack that contains only a single matrix.
 
61
In either case, the error flag is set
 
62
and no other change is made to GL state.
 
63
.SH ERRORS
 
64
_const(STACK_OVERFLOW) is generated if _cmnd(PushMatrix) is called while
 
65
the current matrix stack is full.
 
66
.P
 
67
_const(STACK_UNDERFLOW) is generated if _cmnd(PopMatrix) is called while
 
68
the current matrix stack contains only a single matrix.
 
69
.P
 
70
_const(INVALID_OPERATION) is generated if _cmnd(PushMatrix) or _cmnd(PopMatrix)
 
71
is executed between the execution of _cmnd(Begin)
 
72
and the corresponding execution of _cmnd(End).
 
73
.SH ASSOCIATED GETS
 
74
_cmnd(Get) with argument _const(MATRIX_MODE)
 
75
.br
 
76
_cmnd(Get) with argument _const(COLOR_MATRIX)
 
77
.br
 
78
_cmnd(Get) with argument _const(MODELVIEW_MATRIX)
 
79
.br
 
80
_cmnd(Get) with argument _const(PROJECTION_MATRIX)
 
81
.br
 
82
_cmnd(Get) with argument _const(TEXTURE_MATRIX)
 
83
.br
 
84
_cmnd(Get) with argument _const(COLOR_STACK_DEPTH)
 
85
.br
 
86
_cmnd(Get) with argument _const(MODELVIEW_STACK_DEPTH)
 
87
.br
 
88
_cmnd(Get) with argument _const(PROJECTION_STACK_DEPTH)
 
89
.br
 
90
_cmnd(Get) with argument _const(TEXTURE_STACK_DEPTH)
 
91
.br
 
92
_cmnd(Get) with argument _const(MAX_MODELVIEW_STACK_DEPTH)
 
93
.br
 
94
_cmnd(Get) with argument _const(MAX_PROJECTION_STACK_DEPTH)
 
95
.br
 
96
_cmnd(Get) with argument _const(MAX_TEXTURE_STACK_DEPTH)
 
97
.SH SEE ALSO
 
98
_cmnd(Frustum), 
 
99
_cmnd(LoadIdentity),
 
100
_cmnd(LoadMatrix),
 
101
_cmnd(MatrixMode),
 
102
_cmnd(MultMatrix),
 
103
_cmnd(Ortho),
 
104
_cmnd(Rotate),
 
105
_cmnd(Scale),
 
106
_cmnd(Translate),
 
107
_cmnd(Viewport)