Home | History | Annotate | Download | only in main

Lines Matching refs:Line

34  * Set the line width.
36 * \param width line width in pixels.
49 if (ctx->Line.Width == width)
60 * "Wide lines and line stipple - LineWidth is not deprecated, but
76 ctx->Line.Width = width;
84 * Set the line stipple pattern.
105 if (ctx->Line.StippleFactor == factor &&
106 ctx->Line.StipplePattern == pattern)
110 ctx->Line.StippleFactor = factor;
111 ctx->Line.StipplePattern = pattern;
119 * Initialize the context line state.
123 * Initializes __struct gl_contextRec::Line and line related constants in
129 ctx->Line.SmoothFlag = GL_FALSE;
130 ctx->Line.StippleFlag = GL_FALSE;
131 ctx->Line.Width = 1.0;
132 ctx->Line.StipplePattern = 0xffff;
133 ctx->Line.StippleFactor = 1;