summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-06-10 12:25:50 +0200
committerMarek Olšák <[email protected]>2017-06-22 01:51:02 +0200
commit58a02196b99d375481af5abfdcba967167f99d7a (patch)
tree52b0e27c15300096f90ca435f84a87bed83c5554 /src/mesa/state_tracker/st_context.c
parentbc871a1baf8979310eb7adc1b87342e389616027 (diff)
mesa: don't flag _NEW_LINE for st/mesa
Reviewed-by: Nicolai Hähnle <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r--src/mesa/state_tracker/st_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index cf296c0ea73..b200b900f94 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -211,7 +211,6 @@ st_invalidate_state(struct gl_context * ctx)
}
if (new_state & (_NEW_LIGHT |
- _NEW_LINE |
_NEW_POINT))
st->dirty |= ST_NEW_RASTERIZER;
@@ -523,6 +522,7 @@ static void st_init_driver_flags(struct st_context *st)
f->NewClipPlane = ST_NEW_CLIP_STATE;
f->NewClipPlaneEnable = ST_NEW_RASTERIZER;
f->NewDepthClamp = ST_NEW_RASTERIZER;
+ f->NewLineState = ST_NEW_RASTERIZER;
f->NewPolygonState = ST_NEW_RASTERIZER;
f->NewViewport = ST_NEW_VIEWPORT;
}