diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-10-07 03:56:29 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-10-07 03:56:29 +0000 |
commit | dfe7aedf845ce9117065c6cee2146df7eee1c0fa (patch) | |
tree | 5a2f0638c52c406babdaf5975f83798c1e265010 /src/mesa/main/state.c | |
parent | 9dd973ec3b2b53f4b95d2ba0a746a0e52533becf (diff) |
Fix a number of point size attenuation problems.
Move size clamping into the rasterization function.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 509ee42a02..244cb485c6 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -987,6 +987,9 @@ _mesa_update_state( GLcontext *ctx ) if (new_state & (_NEW_SCISSOR|_NEW_BUFFERS)) _mesa_update_draw_buffer_bounds( ctx ); + if (new_state & _NEW_POINT) + _mesa_update_point( ctx ); + if (new_state & _NEW_POLYGON) _mesa_update_polygon( ctx ); |