Skip to content
Snippets Groups Projects
Commit 1805e647 authored by Marek Olšák's avatar Marek Olšák Committed by Emil Velikov
Browse files

st/mesa: fix front buffer regression after dropping st_validate_state in Blit

Broken by: d082c532
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92072



Cc: 10.6 11.0 <mesa-stable@lists.freedesktop.org>
Tested-by: default avatarIlia Mirkin <imirkin@alum.mit.edu>
(cherry picked from commit f3a08195)
parent 5b6ac612
No related branches found
No related tags found
Loading
......@@ -228,6 +228,7 @@ st_BlitFramebuffer(struct gl_context *ctx,
st_adjust_blit_for_msaa_resolve(&blit);
st->pipe->blit(st->pipe, &blit);
dstRb->defined = true; /* front buffer tracking */
}
}
}
......@@ -265,6 +266,7 @@ st_BlitFramebuffer(struct gl_context *ctx,
st_adjust_blit_for_msaa_resolve(&blit);
st->pipe->blit(st->pipe, &blit);
dstRb->defined = true; /* front buffer tracking */
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment