diff options
author | Marek Olšák <[email protected]> | 2017-06-10 12:18:34 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-22 01:51:02 +0200 |
commit | bc871a1baf8979310eb7adc1b87342e389616027 (patch) | |
tree | f94a58f7dfcea798dbd13b51ec831c92d378cc85 /src/mesa/state_tracker | |
parent | 00173d91b70ae4dcea7c6324ee4858c498cae14b (diff) |
mesa: don't flag _NEW_POLYGON 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')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 23aad0a1f41..cf296c0ea73 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -212,8 +212,7 @@ st_invalidate_state(struct gl_context * ctx) if (new_state & (_NEW_LIGHT | _NEW_LINE | - _NEW_POINT | - _NEW_POLYGON)) + _NEW_POINT)) st->dirty |= ST_NEW_RASTERIZER; if (new_state & _NEW_PROJECTION && @@ -524,6 +523,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->NewPolygonState = ST_NEW_RASTERIZER; f->NewViewport = ST_NEW_VIEWPORT; } |