Home | History | Annotate | Download | only in main

Lines Matching refs:Height

46 _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height)
50 _mesa_set_viewport(ctx, x, y, width, height);
61 * \param height height of the viewport rectangle.
65 GLsizei width, GLsizei height)
68 _mesa_debug(ctx, "glViewport %d %d %d %d\n", x, y, width, height);
70 if (width < 0 || height < 0) {
72 "glViewport(%d, %d, %d, %d)", x, y, width, height);
76 /* clamp width and height to the implementation dependent range */
78 height = MIN2(height, (GLsizei) ctx->Const.MaxViewportHeight);
83 ctx->Viewport.Height = height;
93 ctx->Viewport.Width, ctx->Viewport.Height,
102 ctx->Driver.Viewport(ctx, x, y, width, height);
139 ctx->Viewport.Width, ctx->Viewport.Height,
167 ctx->Viewport.Height = 0;