From 1693ab6c3aabba33902f24789519a08b461e3f30 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 20 Jul 2017 10:18:10 +0200 Subject: [PATCH] mesa: add point_size() helper Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri --- src/mesa/main/points.c | 23 +++++++++++++++-------- 1 file 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); } -- 2.30.2