Lines Matching refs:Line
278 attr->LineSmooth = ctx->Line.SmoothFlag;
279 attr->LineStipple = ctx->Line.StippleFlag;
365 memcpy( attr, &ctx->Line, sizeof(struct gl_line_attrib) );
528 TEST_AND_UPDATE(ctx->Line.SmoothFlag, enable->LineSmooth, GL_LINE_SMOOTH);
529 TEST_AND_UPDATE(ctx->Line.StippleFlag, enable->LineStipple,
1121 const struct gl_line_attrib *line;
1122 line = (const struct gl_line_attrib *) attr->data;
1123 _mesa_set_enable(ctx, GL_LINE_SMOOTH, line->SmoothFlag);
1124 _mesa_set_enable(ctx, GL_LINE_STIPPLE, line->StippleFlag);
1125 _mesa_LineStipple(line->StippleFactor, line->StipplePattern);
1126 _mesa_LineWidth(line->Width);