diff options
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 743c7bde280..1c1c55afe3c 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -201,8 +201,7 @@ st_invalidate_state(struct gl_context * ctx) st->dirty |= ST_NEW_RASTERIZER; if (new_state & _NEW_SCISSOR) - st->dirty |= ST_NEW_RASTERIZER | - ST_NEW_SCISSOR; + st->dirty |= ST_NEW_RASTERIZER; if (new_state & _NEW_FOG) st->dirty |= ST_NEW_FS_STATE; @@ -523,6 +522,7 @@ static void st_init_driver_flags(struct st_context *st) f->NewImageUnits = ST_NEW_IMAGE_UNITS; f->NewWindowRectangles = ST_NEW_WINDOW_RECTANGLES; f->NewFramebufferSRGB = ST_NEW_FRAMEBUFFER; + f->NewScissorRect = ST_NEW_SCISSOR; } struct st_context *st_create_context(gl_api api, struct pipe_context *pipe, |