Lines Matching defs:width
36 * Set the line width.
38 * \param width line width in pixels.
43 line_width(struct gl_context *ctx, GLfloat width, bool no_error)
45 /* If width is unchanged, there can't be an error */
46 if (ctx->Line.Width == width)
49 if (!no_error && width <= 0.0F) {
67 && width > 1.0F) {
74 ctx->Line.Width = width;
79 _mesa_LineWidth_no_error(GLfloat width)
82 line_width(ctx, width, true);
87 _mesa_LineWidth(GLfloat width)
92 _mesa_debug(ctx, "glLineWidth %f\n", width);
94 line_width(ctx, width, false);