Lines Matching defs:box
115 * Define the scissor box.
117 * \param x, y coordinates of the scissor box lower-left corner.
118 * \param width width of the scissor box.
119 * \param height height of the scissor box.
192 * Define the scissor box.
195 * \param x, y coordinates of the scissor box lower-left corner.
196 * \param width width of the scissor box.
197 * \param height height of the scissor box.
260 _mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box)
268 _mesa_enum_to_string(mode), count, box);
289 if (box[2] < 0 || box[3] < 0) {
291 "glWindowRectanglesEXT(box %d: w < 0 || h < 0)", i);
294 newval[i].X = box[0];
295 newval[i].Y = box[1];
296 newval[i].Width = box[2];
297 newval[i].Height = box[3];
298 box += 4;