diff options
author | Marek Olšák <[email protected]> | 2017-06-10 12:25:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-22 01:51:02 +0200 |
commit | 58a02196b99d375481af5abfdcba967167f99d7a (patch) | |
tree | 52b0e27c15300096f90ca435f84a87bed83c5554 /src/mesa/state_tracker/st_context.c | |
parent | bc871a1baf8979310eb7adc1b87342e389616027 (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.c | 2 |
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; } |