Module: Mesa Branch: main Commit: 26d591a6695d20ca912c7a1c4e115a77cae094ce URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=26d591a6695d20ca912c7a1c4e115a77cae094ce
Author: Rob Clark <[email protected]> Date: Fri Jan 21 08:58:07 2022 -0800 mesa/st: Lowered ucp should still mark rast state dirty Lowered clip planes should respect the enabled/disabled GL_CLIP_PLANEn (aka GL_CLIP_DISTANCEn), which means updating the rast state as well. Signed-off-by: Rob Clark <[email protected]> Acked-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14643> --- src/mesa/state_tracker/st_context.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index a2549fd122b..8d4ec1d143f 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -437,10 +437,9 @@ st_init_driver_flags(struct st_context *st) f->NewFragClamp = ST_NEW_RASTERIZER; } + f->NewClipPlaneEnable = ST_NEW_RASTERIZER; if (st->lower_ucp) - f->NewClipPlaneEnable = ST_NEW_VS_STATE | ST_NEW_GS_STATE; - else - f->NewClipPlaneEnable = ST_NEW_RASTERIZER; + f->NewClipPlaneEnable |= ST_NEW_VS_STATE | ST_NEW_GS_STATE; if (st->emulate_gl_clamp) f->NewSamplersWithClamp = ST_NEW_SAMPLERS |
