Home | History | Annotate | Download | only in main

Lines Matching refs:Height

36 _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height )
42 _mesa_debug(ctx, "glScissor %d %d %d %d\n", x, y, width, height);
44 if (width < 0 || height < 0) {
49 _mesa_set_scissor(ctx, x, y, width, height);
58 * \param height height of the scissor box.
68 GLint x, GLint y, GLsizei width, GLsizei height)
73 height == ctx->Scissor.Height)
80 ctx->Scissor.Height = height;
83 ctx->Driver.Scissor( ctx, x, y, width, height );
99 ctx->Scissor.Height = 0;