st/mesa: fix wrong initialization of MaxPointSize
authorRoland Scheidegger <sroland@vmware.com>
Mon, 8 Feb 2010 17:48:08 +0000 (18:48 +0100)
committerRoland Scheidegger <sroland@vmware.com>
Mon, 8 Feb 2010 17:48:08 +0000 (18:48 +0100)
src/mesa/state_tracker/st_extensions.c

index 7684ccd702b2101255d97c4592e1ba030d6a2f24..cf31a0c06edcef9c924474aac34bb40443451bfd 100644 (file)
@@ -114,6 +114,10 @@ void st_init_limits(struct st_context *st)
       = _maxf(1.0f, screen->get_paramf(screen, PIPE_CAP_MAX_POINT_WIDTH));
    c->MaxPointSizeAA
       = _maxf(1.0f, screen->get_paramf(screen, PIPE_CAP_MAX_POINT_WIDTH_AA));
+   /* called after _mesa_create_context/_mesa_init_point, fix default user
+    * settable max point size up
+    */
+   st->ctx->Point.MaxSize = MAX2(c->MaxPointSize, c->MaxPointSizeAA);
    /* these are not queryable. Note that GL basically mandates a 1.0 minimum
     * for non-aa sizes, but we can go down to 0.0 for aa points.
     */