diff options
author | Roland Scheidegger <[email protected]> | 2010-01-12 15:54:13 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-01-12 15:54:13 +0100 |
commit | a407636efb6c32cee81b9a1525dbc804aacd957b (patch) | |
tree | 7d516562ded9d8698592e1f1695604c460d28d6f /src/gallium/drivers/svga/svga_screen.c | |
parent | cca66dbb59673168d57b4e3499ccc31f4ddc86ad (diff) |
gallium: remove point_size_min and point_size_max from rasterizer state
The state tracker is responsible for clamping to any graphics API enforced
size min/max limits for both the static point_size setting as well as per
vertex point size (in the vertex shader).
Note that mesa state tracker didn't actually use these values.
Diffstat (limited to 'src/gallium/drivers/svga/svga_screen.c')
-rw-r--r-- | src/gallium/drivers/svga/svga_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index fc1b3c980ef..45b5d85ae22 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -103,7 +103,7 @@ svga_get_paramf(struct pipe_screen *screen, int param) /* Keep this to a reasonable size to avoid failures in * conform/pntaa.c: */ - return 80.0; + return SVGA_MAX_POINTSIZE; case PIPE_CAP_MAX_TEXTURE_ANISOTROPY: return 4.0; |