Lines Matching refs:Point
58 if (ctx->Point._Attenuated || ctx->VertexProgram.PointSizeEnabled) {
64 size = ctx->Point.Size;
67 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize);
128 if (ctx->Point.SpriteOrigin == GL_LOWER_LEFT) {
143 if (ctx->Point.CoordReplace & (1u << u)) {
254 if (vert->pointSize >= ctx->Point.Threshold) {
258 GLfloat dsize = vert->pointSize / ctx->Point.Threshold;
537 const GLfloat size = CLAMP(ctx->Point.Size,
538 ctx->Point.MinSize,
539 ctx->Point.MaxSize);
542 if (ctx->Point.PointSprite) {
543 swrast->Point = sprite_point;
545 else if (ctx->Point.SmoothFlag) {
546 swrast->Point = smooth_point;
549 ctx->Point._Attenuated ||
551 swrast->Point = large_point;
554 swrast->Point = pixel_point;
558 swrast->Point = _swrast_feedback_point;
562 swrast->Point = _swrast_select_point;