Use Point._Size in calculation
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 29 Dec 2004 14:38:17 +0000 (14:38 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 29 Dec 2004 14:38:17 +0000 (14:38 +0000)
src/mesa/swrast/s_points.c

index 4e44f67..5879bcc 100644 (file)
@@ -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);