Lines Matching refs:Point
3 * Point operations.
46 if (ctx->Point.Size == size)
55 ctx->Point.Size = size;
131 if (TEST_EQ_3V(ctx->Point.Params, params))
135 COPY_3V(ctx->Point.Params, params);
136 ctx->Point._Attenuated = (ctx->Point.Params[0] != 1.0F ||
137 ctx->Point.Params[1] != 0.0F ||
138 ctx->Point.Params[2] != 0.0F);
146 if (ctx->Point.MinSize == params[0])
149 ctx->Point.MinSize = params[0];
157 if (ctx->Point.MaxSize == params[0])
160 ctx->Point.MaxSize = params[0];
168 if (ctx->Point.Threshold == params[0])
171 ctx->Point.Threshold = params[0];
185 if (ctx->Point.SpriteOrigin == value)
188 ctx->Point.SpriteOrigin = value;
213 * Initializes __struct gl_contextRec::Point and point related constants in
219 ctx->Point.SmoothFlag = GL_FALSE;
220 ctx->Point.Size = 1.0;
221 ctx->Point.Params[0] = 1.0;
222 ctx->Point.Params[1] = 0.0;
223 ctx->Point.Params[2] = 0.0;
224 ctx->Point._Attenuated = GL_FALSE;
225 ctx->Point.MinSize = 0.0;
226 ctx->Point.MaxSize
228 ctx->Point.Threshold = 1.0;
233 * POINT_SMOOTH and POINT_SPRITE, and all associated state. Point
240 ctx->Point.PointSprite = (ctx->API == API_OPENGL_CORE ||
243 ctx->Point.SpriteOrigin = GL_UPPER_LEFT; /* GL_ARB_point_sprite */
244 ctx->Point.CoordReplace = 0; /* GL_ARB_point_sprite */