Lines Matching defs:width
34 * Set the line width.
36 * \param width line width in pixels.
41 line_width(struct gl_context *ctx, GLfloat width, bool no_error)
43 /* If width is unchanged, there can't be an error */
44 if (ctx->Line.Width == width)
47 if (!no_error && width <= 0.0F) {
65 && width > 1.0F) {
72 ctx->Line.Width = width;
75 ctx->Driver.LineWidth(ctx, width);
80 _mesa_LineWidth_no_error(GLfloat width)
83 line_width(ctx, width, true);
88 _mesa_LineWidth(GLfloat width)
93 _mesa_debug(ctx, "glLineWidth %f\n", width);
95 line_width(ctx, width, false);