From: Samuel Pitoiset Date: Thu, 20 Jul 2017 08:18:10 +0000 (+0200) Subject: mesa: add point_size() helper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1693ab6c3aabba33902f24789519a08b461e3f30;p=mesa.git mesa: add point_size() helper Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri --- 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); }