diff options
author | Zou Nan hai <[email protected]> | 2007-08-01 11:08:05 +0800 |
---|---|---|
committer | Zou Nan hai <[email protected]> | 2007-08-01 11:08:05 +0800 |
commit | a6dad044e24358af9fe5764ca7b342f4ed4804db (patch) | |
tree | cfae5af62bcb385f4f65d4f6f5702d2c5b14a930 | |
parent | 6fae66715be216f03f1f418d963ae6db8c83885a (diff) |
fix fd.o bug #11788, max point size
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf_state.c b/src/mesa/drivers/dri/i965/brw_sf_state.c index 9a6e5f5f192..307fb637851 100644 --- a/src/mesa/drivers/dri/i965/brw_sf_state.c +++ b/src/mesa/drivers/dri/i965/brw_sf_state.c @@ -185,7 +185,7 @@ static void upload_sf_unit( struct brw_context *brw ) /* _NEW_POINT */ sf.sf6.point_rast_rule = 1; /* opengl conventions */ /* XXX clamp max depends on AA vs. non-AA */ - sf.sf7.point_size = CLAMP(brw->attribs.Point->Size, 1.0, 3.0) * (1<<3); + sf.sf7.point_size = CLAMP(brw->attribs.Point->Size, 1.0, 255.0) * (1<<3); sf.sf7.use_point_size_state = !brw->attribs.Point->_Attenuated; /* might be BRW_NEW_PRIMITIVE if we have to adjust pv for polygons: |