summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_points.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-12-29 14:38:17 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-12-29 14:38:17 +0000
commitef494c06b6e4dc720f32700f899ddad7cadb0a95 (patch)
treec60a6c5ce97fedaa11d294e06d7e82aa70660832 /src/mesa/swrast/s_points.c
parent54ef88109b3e135f7cc1feabbbc7dbf640a5d8cc (diff)
Use Point._Size in calculation
Diffstat (limited to 'src/mesa/swrast/s_points.c')
-rw-r--r--src/mesa/swrast/s_points.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_points.c b/src/mesa/swrast/s_points.c
index 4e44f67e6b..5879bccf1e 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);