From: Keith Whitwell Date: Wed, 29 Dec 2004 14:38:17 +0000 (+0000) Subject: Use Point._Size in calculation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef494c06b6e4dc720f32700f899ddad7cadb0a95;p=mesa.git Use Point._Size in calculation --- diff --git a/src/mesa/swrast/s_points.c b/src/mesa/swrast/s_points.c index 4e44f67e6b3..5879bccf1e3 100644 --- a/src/mesa/swrast/s_points.c +++ b/src/mesa/swrast/s_points.c @@ -246,7 +246,7 @@ _swrast_choose_point( GLcontext *ctx ) /* textured */ USE(textured_rgba_point); } - else if (ctx->Point.Size != 1.0) { + else if (ctx->Point._Size != 1.0) { /* large points */ if (rgbMode) { USE(general_rgba_point);