2 * Mesa 3-D graphics library
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 * glViewport and glDepthRange functions.
40 * \sa Called via glViewport() or display list execution.
42 * Flushes the vertices and calls _mesa_set_viewport() with the given
46 _mesa_Viewport(GLint x
, GLint y
, GLsizei width
, GLsizei height
)
48 GET_CURRENT_CONTEXT(ctx
);
49 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx
);
50 _mesa_set_viewport(ctx
, x
, y
, width
, height
);
55 * Set new viewport parameters and update derived state (the _WindowMap
56 * matrix). Usually called from _mesa_Viewport().
58 * \param ctx GL context.
59 * \param x, y coordinates of the lower left corner of the viewport rectangle.
60 * \param width width of the viewport rectangle.
61 * \param height height of the viewport rectangle.
64 _mesa_set_viewport(struct gl_context
*ctx
, GLint x
, GLint y
,
65 GLsizei width
, GLsizei height
)
67 if (MESA_VERBOSE
& VERBOSE_API
)
68 _mesa_debug(ctx
, "glViewport %d %d %d %d\n", x
, y
, width
, height
);
70 if (width
< 0 || height
< 0) {
71 _mesa_error(ctx
, GL_INVALID_VALUE
,
72 "glViewport(%d, %d, %d, %d)", x
, y
, width
, height
);
76 /* clamp width and height to the implementation dependent range */
77 width
= MIN2(width
, (GLsizei
) ctx
->Const
.MaxViewportWidth
);
78 height
= MIN2(height
, (GLsizei
) ctx
->Const
.MaxViewportHeight
);
81 ctx
->Viewport
.Width
= width
;
83 ctx
->Viewport
.Height
= height
;
84 ctx
->NewState
|= _NEW_VIEWPORT
;
87 /* XXX remove this someday. Currently the DRI drivers rely on
88 * the WindowMap matrix being up to date in the driver's Viewport
89 * and DepthRange functions.
91 _math_matrix_viewport(&ctx
->Viewport
._WindowMap
,
92 ctx
->Viewport
.X
, ctx
->Viewport
.Y
,
93 ctx
->Viewport
.Width
, ctx
->Viewport
.Height
,
94 ctx
->Viewport
.Near
, ctx
->Viewport
.Far
,
95 ctx
->DrawBuffer
->_DepthMaxF
);
98 if (ctx
->Driver
.Viewport
) {
99 /* Many drivers will use this call to check for window size changes
100 * and reallocate the z/stencil/accum/etc buffers if needed.
102 ctx
->Driver
.Viewport(ctx
, x
, y
, width
, height
);
108 * Called by glDepthRange
110 * \param nearval specifies the Z buffer value which should correspond to
111 * the near clip plane
112 * \param farval specifies the Z buffer value which should correspond to
116 _mesa_DepthRange(GLclampd nearval
, GLclampd farval
)
118 GET_CURRENT_CONTEXT(ctx
);
119 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx
);
121 if (MESA_VERBOSE
&VERBOSE_API
)
122 _mesa_debug(ctx
, "glDepthRange %f %f\n", nearval
, farval
);
124 if (ctx
->Viewport
.Near
== nearval
&&
125 ctx
->Viewport
.Far
== farval
)
128 ctx
->Viewport
.Near
= (GLfloat
) CLAMP(nearval
, 0.0, 1.0);
129 ctx
->Viewport
.Far
= (GLfloat
) CLAMP(farval
, 0.0, 1.0);
130 ctx
->NewState
|= _NEW_VIEWPORT
;
133 /* XXX remove this someday. Currently the DRI drivers rely on
134 * the WindowMap matrix being up to date in the driver's Viewport
135 * and DepthRange functions.
137 _math_matrix_viewport(&ctx
->Viewport
._WindowMap
,
138 ctx
->Viewport
.X
, ctx
->Viewport
.Y
,
139 ctx
->Viewport
.Width
, ctx
->Viewport
.Height
,
140 ctx
->Viewport
.Near
, ctx
->Viewport
.Far
,
141 ctx
->DrawBuffer
->_DepthMaxF
);
144 if (ctx
->Driver
.DepthRange
) {
145 ctx
->Driver
.DepthRange(ctx
, nearval
, farval
);
150 _mesa_DepthRangef(GLclampf nearval
, GLclampf farval
)
152 _mesa_DepthRange(nearval
, farval
);
156 * Initialize the context viewport attribute group.
157 * \param ctx the GL context.
159 void _mesa_init_viewport(struct gl_context
*ctx
)
161 GLfloat depthMax
= 65535.0F
; /* sorf of arbitrary */
166 ctx
->Viewport
.Width
= 0;
167 ctx
->Viewport
.Height
= 0;
168 ctx
->Viewport
.Near
= 0.0;
169 ctx
->Viewport
.Far
= 1.0;
170 _math_matrix_ctr(&ctx
->Viewport
._WindowMap
);
172 _math_matrix_viewport(&ctx
->Viewport
._WindowMap
, 0, 0, 0, 0,
173 0.0F
, 1.0F
, depthMax
);
178 * Free the context viewport attribute group data.
179 * \param ctx the GL context.
181 void _mesa_free_viewport_data(struct gl_context
*ctx
)
183 _math_matrix_dtr(&ctx
->Viewport
._WindowMap
);