Lines Matching defs:width
46 GLint x, GLint y, GLsizei width, GLsizei height)
50 width == ctx->Scissor.ScissorArray[idx].Width &&
62 ctx->Scissor.ScissorArray[idx].Width = width;
67 scissor(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height)
77 * ScissorIndexed(i, left, bottom, width, height);
84 set_scissor_no_notify(ctx, i, x, y, width, height);
91 _mesa_Scissor_no_error(GLint x, GLint y, GLsizei width, GLsizei height)
94 scissor(ctx, x, y, width, height);
98 _mesa_Scissor(GLint x, GLint y, GLsizei width, GLsizei height)
103 _mesa_debug(ctx, "glScissor %d %d %d %d\n", x, y, width, height);
105 if (width < 0 || height < 0) {
110 scissor(ctx, x, y, width, height);
118 * \param width width of the scissor box.
129 GLint x, GLint y, GLsizei width, GLsizei height)
131 set_scissor_no_notify(ctx, idx, x, y, width, height);
178 /* Verify width & height */
182 "glScissorArrayv: index (%d) width or height < 0 (%d, %d)",
196 * \param width width of the scissor box.
203 GLint bottom, GLsizei width, GLsizei height,
208 function, index, left, bottom, width, height);
217 if (width < 0 || height < 0) {
219 "%s: index (%d) width or height < 0 (%d, %d)",
220 function, index, width, height);
224 _mesa_set_scissor(ctx, index, left, bottom, width, height);
229 GLsizei width, GLsizei height)
232 _mesa_set_scissor(ctx, index, left, bottom, width, height);
237 GLsizei width, GLsizei height)
240 scissor_indexed_err(ctx, index, left, bottom, width, height,