diff options
author | Kenneth Graunke <[email protected]> | 2012-01-09 11:08:34 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-01-09 21:45:09 -0800 |
commit | 62ca17101c8282732d5c05e7891c3380a0701e4f (patch) | |
tree | 1354cb8df9e37dc710d10bf42f055a18f464e286 | |
parent | 60343b67f7741bba8ca086f4b5431e68e58c75a2 (diff) |
i965: Add missing _NEW_PROGRAM dirty bit to the brw_sf_state atom.
Also, annotate the use of _NEW_POINT as long as we're adding a comment.
NOTE: This is a candidate for the 7.11 branch.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf_state.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf_state.c b/src/mesa/drivers/dri/i965/brw_sf_state.c index 3b7a4db3ae4..d7e7aa11f63 100644 --- a/src/mesa/drivers/dri/i965/brw_sf_state.c +++ b/src/mesa/drivers/dri/i965/brw_sf_state.c @@ -272,6 +272,7 @@ static void upload_sf_unit( struct brw_context *brw ) sf->sf7.point_size = CLAMP(rint(CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize)), 1, 255) * (1<<3); + /* _NEW_PROGRAM | _NEW_POINT */ sf->sf7.use_point_size_state = !(ctx->VertexProgram.PointSizeEnabled || ctx->Point._Attenuated); sf->sf7.aa_line_distance_mode = 0; @@ -313,6 +314,7 @@ static void upload_sf_unit( struct brw_context *brw ) const struct brw_tracked_state brw_sf_unit = { .dirty = { .mesa = (_NEW_POLYGON | + _NEW_PROGRAM | _NEW_LIGHT | _NEW_LINE | _NEW_POINT | |