diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/points.c | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/src/mesa/main/points.c b/src/mesa/main/points.c index 2d62e73c126..012fac5b3cb 100644 --- a/src/mesa/main/points.c +++ b/src/mesa/main/points.c @@ -40,6 +40,20 @@ * \param size point diameter in pixels * \sa glPointSize(). */ +static void +point_size(struct gl_context *ctx, GLfloat size) +{ + if (ctx->Point.Size == size) + return; + + FLUSH_VERTICES(ctx, _NEW_POINT); + ctx->Point.Size = size; + + if (ctx->Driver.PointSize) + ctx->Driver.PointSize(ctx, size); +} + + void GLAPIENTRY _mesa_PointSize( GLfloat size ) { @@ -50,14 +64,7 @@ _mesa_PointSize( GLfloat size ) return; } - if (ctx->Point.Size == size) - return; - - FLUSH_VERTICES(ctx, _NEW_POINT); - ctx->Point.Size = size; - - if (ctx->Driver.PointSize) - ctx->Driver.PointSize(ctx, size); + point_size(ctx, size); } |