summaryrefslogtreecommitdiff
path: root/src/mesa/main/points.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/points.c')
-rw-r--r--src/mesa/main/points.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/main/points.c b/src/mesa/main/points.c
index c336d887afb..b05519c09e8 100644
--- a/src/mesa/main/points.c
+++ b/src/mesa/main/points.c
@@ -53,9 +53,6 @@ point_size(struct gl_context *ctx, GLfloat size, bool no_error)
FLUSH_VERTICES(ctx, _NEW_POINT, GL_POINT_BIT);
ctx->Point.Size = size;
-
- if (ctx->Driver.PointSize)
- ctx->Driver.PointSize(ctx, size);
}
@@ -198,9 +195,6 @@ _mesa_PointParameterfv( GLenum pname, const GLfloat *params)
"glPointParameterf[v]{EXT,ARB}(pname)" );
return;
}
-
- if (ctx->Driver.PointParameterfv)
- ctx->Driver.PointParameterfv(ctx, pname, params);
}